/* =====================
   RESET + BASE
===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f8fdf6;
  color: #333;
  height: 100%;
}

/* =====================
   HEADER (matches .nav)
===================== */

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  max-width: 100%;
  margin: 2rem auto;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #3e5d30;
  font-weight: 600;
  font-size: 1.1rem;
}

.main-nav a:hover {
  text-decoration: underline;
  color: #6a4f2d;
}

/* =====================
   HERO (matches .hero)
===================== */

/* =====================
   HERO SECTION
   (derived from existing .hero styles)
===================== */
/* =====================
   HERO – CENTERED PROPERLY
===================== */

.hero {
  background: #f8fdf6;
  padding: 1.5rem 2rem 3rem;
  text-align: center;
  
}

.hero-inner {
  max-width: 1200px;   /* matches booking/header rhythm */
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  color: #3e5d30;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}




/* =====================
   BOOKING SECTION
   (derived from contact-section + contact-form)
===================== */

.booking {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.booking-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-info {
  text-align: center;
  color: #3e5d30;
}

.booking-info h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.booking-info ul {
  list-style: none;
  padding: 0;
}

.booking-info li {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #444;
}

/* Form styling (matches .contact-form) */

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f4f4f4;
  font-family: inherit;
  color: #333;
  appearance: none;        /* removes default OS styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
}

/* drop down arrow  */
.booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 3rem; /* space for arrow */
}

.booking-form textarea {
  min-height: 120px;
}

.booking-form .row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form button {
  background-color: #3e5d30;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.booking-form button:hover {
  background-color: #6a4f2d;
}

/* =====================
   BOOKING IMAGE (RIGHT SIDE)
===================== */

.booking-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-info p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #3e5d30;
}

.booking-info .label {
  font-weight: 600;
  color: #3e5d30;
}

.booking-image img {
  max-width: 370px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;

}

/* =====================
   DESKTOP LAYOUT
===================== */

@media (min-width: 768px) {
  .booking-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
  }

  .booking-content {
    flex: 1;
  }

  .booking-image {
    flex: 1;
    align-self: flex-start;
  }


}

/* =====================
   MOBILE STACKING
===================== */

@media (max-width: 767px) {
  .booking-image {
    margin-top: 2rem;
  }

  .booking-image img {
    max-width: 92%;
  }
}



/* =====================
   DESKTOP FORM LAYOUT
===================== */

@media (min-width: 768px) {
  .booking-inner {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .booking-info,
  .booking-form {
    flex: 1;
  }

  .booking-info {
    text-align: left;
  }

  .booking-form .row {
    flex-direction: row;
    gap: 1rem;
  }

  .booking-form .row input {
    flex: 1;
  }
}

/* =====================
   FOOTER (matches .footer-section)
===================== */

.site-footer {
  background-color: #3e5d30;
  color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
}

.site-footer img {
  max-width: 160px;
  margin-bottom: 1.5rem;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

.site-footer p {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  color: #d8f3e5;
}

.site-footer img {
  background: #ffffff;
  padding: 0.2rem 0.2rem;
  border-radius: 12px;
}



/* Navigation Container */
.nav {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  max-width: 100%;
  margin: 2rem auto;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Flex container */
.nav-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


/* Logo */
.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Hide checkbox */
.nav-toggle {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  height: 40px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #3e5d30;
  border-radius: 2px;
}

/* Nav Links - desktop */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #3e5d30;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  text-decoration: underline;
  color: #6a4f2d;
}

/* =====================
   MOBILE STYLES
===================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .nav-toggle:checked + .nav-inner .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  /* Make sure nav-inner stays aligned */
  .nav-inner {
    align-items: center;
  }
}