body {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #0077cc;
}

a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  background-color: #000000;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar h1 {
  color: white;
  font-size: 1.8rem;
  margin: 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-button {
  background: white;
  color: #ff3366;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.nav-button:hover {
  background: #ffe6ed;
}

/* Hero */
.hero.full-bg {
  position: relative;
  height: 400px;
  background: url("Images/hero-cartoon.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  color: white;
  padding: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

/* Intro & Testimonials */
.intro, .testimonials {
  text-align: center;
  padding: 20px 20px;
}

.intro h3, .testimonials h3 {
  color: #ff3366;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
}

.testimonials blockquote {
  font-style: italic;
  margin: 20px auto;
  max-width: 600px;
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonials span {
  display: block;
  font-weight: bold;
  margin-top: 2px;
  font-size: 1.1rem;
}

/* Rentals Grid */
.rentals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.rental-card {
  background-color: #fff6f6;
  border: 1px solid #ffd6d6;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 51, 102, 0.1);
}

.rental-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.rental-card h3 {
  color: #ff3366;
}

.rental-card .price {
  font-weight: bold;
  margin: 10px 0;
}

.button {
  background-color: #ff3366;
  color: white;
  padding: 10px 18px;
  display: inline-block;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #cc2953;
}

/* Booking Form */
.booking-form {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form label {
  font-weight: bold;
}

.booking-form input,
.booking-form select {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.booking-form input[type="checkbox"] {
  margin-right: 8px;
}

.booking-form button {
  margin-top: 10px;
}

/* Embedded Form */
.embedded-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  text-align: left;
}

.embedded-form label {
  font-weight: bold;
}

.embedded-form input[type="text"],
.embedded-form input[type="email"],
.embedded-form input[type="date"] {
  padding: 8px;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.embedded-form input[type="checkbox"] {
  margin-right: 6px;
}

/* Contact Page */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.contact-form,
.contact-info {
  flex: 1 1 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form textarea {
  resize: vertical;
  padding: 10px;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.contact-info h3 {
  color: #ff3366;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  background-color: #eee;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar h1 {
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
  }

  .navbar ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    padding-top: 10px;
  }

  .hero.full-bg {
    height: 300px;
    background-position: center top;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .rentals-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .rental-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .embedded-form,
  .calendar {
    width: 100%;
  }

  .intro, .contact-form {
    padding: 10px;
    text-align: center;
  }

  header, footer {
    text-align: center;
  }
}


.cta-button {
  background-color: #ff3366;
  color: #fff;
  padding: 12px 24px;
  margin-top: 20px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #cc2953;
  transform: scale(1.05);
}

.intro p, .testimonials p, .testimonials blockquote {
  font-size: 1.2rem;
  line-height: 2.5;
  color: #333;
  font-weight: bold;
}

.intro {
  margin-bottom: 1px;
}

.testimonials {
  margin-top: 0;
}

.site-title-link {
  color: white;
  text-decoration: none;
}

.site-title-link:hover {
  text-decoration: underline;
}
