@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #fdf6e9;
  color: #3a2e1c;
  line-height: 1.5;
  padding: 16px;
}

.hero,
.benefits,
.tour-form,
.testimonials,
.map-section,
.site-footer {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 0 16px;
}

.hero {
  text-align: center;
  padding-top: 32px;
}

.sam-hero {
  width: 150px;
  max-width: 100%;
  margin-bottom: 20px;
  padding-top: 16px; /* Give Sam breathing room */
}

.headline h1 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  text-align: center;
}

.headline p {
  font-size: 1rem;
  color: #6a5a44;
  text-align: center;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.badges span {
  background-color: #e4dccc;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 0;
}

.benefits li {
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.benefits li::before {
  content: "🌱";
  margin-right: 8px;
}

/* --- UPDATED TOUR FORM --- */
.tour-form {
  background-color: #fffdf8;
  border: 1px solid #e8dec9;
  border-radius: 16px;
  max-width: 600px;
  margin: 48px auto;
  padding: 32px 24px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Quicksand', sans-serif;
}

.tour-form h2 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 24px;
  color: #2c2415;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form label {
  font-weight: 600;
  font-size: 1rem;
  color: #3a2e1c;
}

form input,
form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcd0b5;
  border-radius: 10px;
  background-color: #fffefa;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  transition: border-color 0.2s ease;
}

form input:focus,
form select:focus {
  border-color: #327432;
  outline: none;
}

form button {
  width: 100%;
  background-color: #327432;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

form button:hover {
  background-color: #285c2d;
}

#child-age-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonials {
  background-color: #fff9ee;
  border: 2px solid #f1e6d0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.sam-testimonial {
  width: 100px;
  margin-bottom: 16px;
}

.testimonials h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonials blockquote {
  font-style: italic;
  color: #5c4b35;
  margin: 10px 0;
  font-size: 0.95rem;
}

.map-section {
  background-color: #fffdf7;
  border: 2px solid #f1e6d0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.map-section h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: none;
  display: block;
}

.site-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #5c4b35;
}

.site-footer .footer-content a {
  color: #3b853a;
  text-decoration: none;
}

.site-footer .footer-content a:hover {
  text-decoration: underline;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin-bottom: 24px;
}

nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #3a2e1c;
}

nav ul li a:hover {
  color: #3b853a;
}

@media (min-width: 768px) {
  body {
    padding: 32px;
  }

  .sam-hero {
    width: 180px;
  }

  .headline h1 {
    font-size: 2.25rem;
  }

  .headline p {
    font-size: 1.15rem;
  }

  .tour-form h2,
  .testimonials h2,
  .map-section h2 {
    font-size: 1.5rem;
  }

  .badges span {
    font-size: 0.95rem;
  }

  form {
    gap: 18px;
  }

  form input,
  form select,
  form button {
    font-size: 1.05rem;
  }

  .testimonials blockquote {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 10px auto;
  }
}
