/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Header styles */
.site-header {
  background-color: rgba(18, 55, 42, 0.85) !important; /* semi-transparent green */
  position: relative !important; /* Ensure it stays on top */
  z-index: 1001 !important; /* Higher than toolbar if needed */
  padding: 6px 20px !important; /* reduced height */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  backdrop-filter: blur(8px); /* blur effect */
  transition: background-color 0.3s ease, padding 0.3s ease;
}

#header.site-header.full-width {
  background-color: rgba(18, 55, 42, 0.85) !important;
  position: relative !important;
  z-index: 1001 !important;
  padding: 6px 20px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, padding 0.3s ease;
}


/* Tagline */
.site-tagline {
  background: transparent !important;
  color: #E9D8A6 !important;
}

/* Branding and logo */
.site-branding,
.site-logo {
  background: transparent !important;
  height: 42px !important;
}

/* Navigation menu links */
.main-nav ul.menu li a {
  color: #fff !important;
  font-size: 0.9rem !important;
  padding: 6px 0 !important;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav ul.menu li a:hover {
  color: #ffcc66 !important;
}

/* Hamburger icon */
.menu-toggle {
  top: 15px !important;
  right: 20px !important;
  position: absolute !important;
  display: none; /* default hidden, shown in media query */
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 28px;
  height: 20px;
  z-index: 1100;
}

.menu-toggle span {
  background-color: #fff;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 8px; }
.menu-toggle span:nth-child(3) { top: 16px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* Reset page height */
html, body {
  height: 100%;
  margin: 0;
}

/* Page wrapper flex */
.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header inner layout */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Branding: logo + tagline */
.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 50px;
  vertical-align: middle;
  background: none;
}

.site-logo img {
  height: 50px;
  display: block;
}

.site-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #E9D8A6;
  margin: 0;
  font-style: normal;
}

/* Navigation */
.main-nav ul.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav ul.menu li {
  position: relative;
}

.main-nav ul.menu li a {
  color: #F4F1DE;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 5px;
  transition: color 0.3s ease;
}

.main-nav ul.menu li a:hover,
.main-nav ul.menu li a:focus {
  color: #D87F33;
  outline: none;
}

/* Dropdown */
.main-nav ul.menu li ul {
  display: none;
  position: absolute;
  background-color: #A57C3B;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 1000;
  top: 100%;
  left: 0;
  border-radius: 4px;
}

.main-nav ul.menu li:hover > ul,
.main-nav ul.menu li:focus-within > ul {
  display: block;
}

.main-nav ul.menu li ul li {
  display: block;
}

.main-nav ul.menu li ul li a {
  padding: 10px 20px;
  display: block;
  color: #F4F1DE;
  font-weight: 500;
}

.main-nav ul.menu li ul li a:hover {
  background-color: #D87F33;
  color: #2C5F2D;
}

/* Footer */
.site-footer {
  background-color: #2C5F2D;
  color: #E9D8A6;
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav ul.menu {
    flex-direction: column;
    gap: 10px;
  }

  .site-branding {
    justify-content: center;
  }
}

/* Show hamburger icon on small screens */
@media (max-width: 900px) {
  .menu-toggle {
    display: block !important;
  }

  .main-nav {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    background: rgba(18, 55, 42, 0.95);
    position: absolute;
    top: 54px;
    right: 0;
    left: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: max-height 0.3s ease;
    z-index: 1050;
  }

  .main-nav.active {
    max-height: 500px;
  }

  .main-nav ul.menu {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .main-nav ul.menu li a {
    color: #fff !important;
  }

  /* Position hamburger icon top right */
  .menu-toggle {
    position: fixed !important;
    top: 15px !important;
    right: 20px !important;
  }
}

/* Full-width hero section */
.hero-fullwidth {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 100vh;
  background: url('/sites/default/files/inline-images/zebra6.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 66, 50, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Hero text */
.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.25rem;
  color: #f7f6bb;
  margin-bottom: 30px;
}

/* Buttons */
.hero-btn {
  background-color: #FFD23F;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #6b8e1c;
}

/* About Section - full width */
.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #f7f6bb;
  color: #114232;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container for content alignment */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section headings */
.full-width-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #114232;
}

/* Paragraphs */
.full-width-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #114232;
  color: #fff;
  margin-top: 15px;
}

.btn-primary:hover {
  background-color: #087f3e;
}

.btn-secondary {
  background-color: #ffd23f;
  color: #114232;
  margin-top: 15px;
}

.btn-secondary:hover {
  background-color: #e6b800;
}

/* Packages grid */
.package-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.package-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgb(17 66 50 / 0.15);
  max-width: 350px;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: #114232;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
}


body.front .site-header {
  background-color: rgba(18, 55, 42, 0.85) !important;
  position: relative !important;
  padding: 6px 20px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  backdrop-filter: blur(8px) !important;
  z-index: 1001 !important;
}

body.front .site-header.scrolled {
  background-color: rgba(18, 55, 42, 0.7) !important;
  backdrop-filter: saturate(180%) blur(8px) !important;
  padding: 4px 20px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
}



.package-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
  height: 220px;
}

.package-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.package-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials-section blockquote {
  max-width: 700px;
  margin: 30px auto;
  font-style: italic;
  font-size: 1.1rem;
  color: #087f3e;
  position: relative;
  padding-left: 40px;
  border-left: 5px solid #114232;
}

.testimonials-section footer {
  margin-top: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: #114232;
  text-align: right;
}

/* Why Choose Us List */
.why-list {
  list-style-type: disc;
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 1.2rem;
  padding-left: 20px;
  color: #114232;
}

.why-list li {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .package-cards {
    flex-direction: column;
    align-items: center;
  }

  .package-card {
    max-width: 90vw;
  }

  .why-list {
    max-width: 100%;
    padding-left: 40px;
  }
}

/* About Section Container & Full Width */
.full-width-section.about-section {
  background-color: #f7f6bb;
  padding: 80px 20px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  color: #114232;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Inner max-width container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro flex */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.intro-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.intro-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.intro-text {
  flex: 1 1 400px;
}

.intro-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #114232;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #114232;
}

/* Mission, Vision, Values section */
.mission-vision-values {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  color: #114232;
  justify-content: center;
}

.mission-vision-values .box {
  flex: 1 1 300px;
  padding: 30px;
  border-radius: 12px;
  color: white;
  box-sizing: border-box;
}

.mission {
  background: #87A922; /* olive green */
}

.vision {
  background: #114232; /* deep green */
}

.values {
  background: #FFD23F; /* yellow */
  color: #114232;
}

.values ul {
  list-style-type: disc;
  padding-left: 20px;
  font-weight: 600;
}

.values li {
  margin-bottom: 10px;
}

/* Team Section */
.team-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #114232;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(17, 66, 50, 0.15);
  padding: 20px;
  text-align: center;
  color: #114232;
}

.team-card img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 280px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin-bottom: 8px;
}

.team-card .role {
  font-weight: 600;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
    align-items: center;
  }

  .mission-vision-values {
    flex-direction: column;
  }

  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    max-width: 90vw;
  }
}

/* --- Gallery Section --- */
/* Container stretch full width like hero */
.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

/* Gallery Section */
.gallery-section h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #FFD23F;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-grid {
  column-count: 3;
  column-gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  margin-bottom: 15px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}


/* Force full width and override Drupal container */
.contact-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: url('/sites/default/files/inline-images/zebra6.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    color: white;
    position: relative;
}

/* Remove Drupal's default padding constraints */
.contact-section .container,
.contact-section .layout,
.contact-section .region {
    max-width: 100% !important;
    padding: 0 !important;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-wrapper,
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 8px;
    margin-top: 5px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-primary {
    background: #ff6600;
    color: white;
}

.btn-primary:hover {
    background: #e65c00;
}

.btn-secondary {
    background: #333;
    color: white;
}

.btn-secondary:hover {
    background: #000;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD23F;
}

.map-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 10px;
    z-index: 9999;
    display: none;
    max-width: 90%;
}

.map-popup.show {
    display: block;
}

.close-map-btn {
    background: red;
    color: white;
    border: none;
    font-size: 20px;
    float: right;
    cursor: pointer;
}


/* Wrapper and font */
.homepage-wrapper {
  font-family: 'Poppins', sans-serif;
  color: #114232;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url('/sites/default/files/hero-uganda-family.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(17, 66, 50, 0.7);
  color: #FCDC2A;
  padding: 40px 60px;
  text-align: center;
  border-radius: 12px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero-overlay p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.btn-primary {
  background-color: #FCDC2A;
  color: #114232;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #d4b82b;
}

/* Services Section */
.services-section {
  text-align: center;
  margin-bottom: 60px;
}

.services-section h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #6DA34D;
}

.services-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #97B067;
  color: white;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(67, 112, 87, 0.3);
  padding: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.btn-secondary {
  background: #F2C94C;
  color: #114232;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #d4b82b;
}

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1 1 45%;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #6DA34D;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #444;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Testimonials Section */
.testimonials-section {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-section h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #6DA34D;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: white;
  color: #114232;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(67, 112, 87, 0.15);
  width: 320px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card footer {
  margin-top: 15px;
  font-weight: 700;
  color: #6DA34D;
}

/* Contact Call to Action */
.contact-cta-section {
  background: #6DA34D;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  color: #FCDC2A;
  margin-bottom: 60px;
}

.contact-cta-section h2 {
  font-size: 2.6rem;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

  .services-cards,
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .about-section {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
  }
}

/* Tours page styles - add to custom.css or separate file */

/* Override Drupal container to make tours-wrapper full viewport width */
.tours-wrapper {
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;

  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: #f9f9f9;
  padding: 40px 10px;
}

/* Ensure child tour cards don't limit width */
.tours-wrapper .tour-card {
  max-width: 480px;
  flex: 1 1 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: default;
  padding: 0 20px; /* Optional inner spacing */
  box-sizing: border-box;
}

.tour-card:hover {
  transform: translateY(-8px);
}

/* Images container: show images side by side */
.tour-images {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.tour-images img {
  flex: 1 1 50%;
  width: 50%;
  height: 200px;
  object-fit: cover;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-images img {
  transform: scale(1.05);
}

/* Tour details */
.tour-details {
  padding: 20px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-details h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #2c3e50;
  font-weight: 700;
  text-transform: capitalize;
}

.tour-details p {
  flex-grow: 1;
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Book Now button */
.btn-primary {
  background: #fcdc2a;
  color: #111;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.25s ease;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgb(252 220 42 / 0.5);
}

.btn-primary:hover {
  background: #e0c500;
  box-shadow: 0 6px 14px rgb(224 197 0 / 0.7);
}

.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 15px;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;       /* allow vertical scrolling */
  overflow-y: auto;       /* scroll if too tall */
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: #333;
}

#bookingForm label {
  display: block;
  margin: 15px 0 6px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

#bookingPopup #bookingForm input[type="text"],
#bookingPopup #bookingForm input[type="email"],
#bookingPopup #bookingForm textarea {
  width: 100% !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  border: 1.5px solid #ccc !important;
  font-size: 1rem !important;
  resize: vertical !important;
  font-family: inherit !important;
  transition: border-color 0.3s ease !important;
}

#bookingPopup #bookingForm input[type="text"]:focus,
#bookingPopup #bookingForm input[type="email"]:focus,
#bookingPopup #bookingForm textarea:focus {
  border-color: #fcdc2a !important;
  outline: none !important;
}

#bookingPopup #bookingForm button[type="submit"] {
  margin-top: 20px;
  background: #fcdc2a;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 6px 15px rgb(252 220 42 / 0.6);
  transition: background-color 0.25s ease;
}

#bookingPopup #bookingForm button[type="submit"]:hover {
  background: #e0c500;
}

.hero-fullwidth {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  height: 100vh;
  font-family: Arial, sans-serif;
  color: #fff;
}

.hero-carousel {
  display: flex !important;
  transition: transform 0.6s ease !important;
  height: 100%;
}

.hero-slide {
  min-width: 100% !important;
  position: relative !important;
  height: 100vh;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.hero-slide:hover img {
  filter: brightness(1);
}

.hero-overlay {
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
  padding: 30px 20px;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-btn {
  background-color: #fcdc2a;
  border-radius: 8px;
  color: #111;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(252, 220, 42, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover,
.hero-btn:focus {
  background-color: #e5cb1f;
  box-shadow: 0 6px 12px rgba(229, 203, 31, 0.7);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Reset & base for About page */
#about-page, 
#about-page html, 
#about-page body {
  margin: 0; 
  padding: 0;
  background-color: #f7f6bb;
  color: #114232;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: auto;
  min-height: 100vh;
}

#about-page body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* Container for full width stretching */
#about-page .about-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #f7f6bb;
  color: #114232;
}

/* Content max width inside full width container */
#about-page section {
  max-width: 1100px;
  margin: 0 auto 60px;
}

/* Headings */
#about-page h1, 
#about-page h2 {
  margin-bottom: 20px;
  font-weight: 700;
}
#about-page h1 {
  font-size: 2.8rem;
}
#about-page h2 {
  font-size: 2.2rem;
  border-bottom: 3px solid #87A922;
  padding-bottom: 6px;
}

/* Paragraphs */
#about-page p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Flex containers for image + text */
#about-page .about-flex-row {
  display: flex;
  align-items: center;
  gap: 50px;
}
#about-page .about-flex-row.reverse {
  flex-direction: row-reverse;
}
#about-page .about-text-block, 
#about-page .about-img-block {
  flex: 1;
}

/* Image styling */
#about-page .about-img-block img {
  width: 100%;
  max-height: 350px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}
#about-page .about-img-block img:hover {
  transform: scale(1.03);
}

/* Lists */
#about-page ul {
  padding-left: 24px;
  list-style-type: disc;
}
#about-page ul li {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

/* Button style */
#about-page .about-btn-contact {
  display: inline-block;
  background-color: #87A922;
  color: #f7f6bb;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(135,169,34,0.7);
  transition: background-color 0.3s ease;
}
#about-page .about-btn-contact:hover {
  background-color: #6d8b1a;
}

/* Reduce bottom margin of last section to avoid extra whitespace */
#about-page section.about-full-width:last-of-type {
  margin-bottom: 40px;
}

/* Responsive */
@media(max-width: 900px) {
  #about-page .about-flex-row, 
  #about-page .about-flex-row.reverse {
    flex-direction: column;
  }
  #about-page .about-img-block img {
    max-height: 280px;
    margin-bottom: 30px;
  }
}
@media(max-width: 480px) {
  #about-page .about-full-width {
    padding: 40px 16px;
  }
  #about-page h1 {
    font-size: 2.2rem;
  }
  #about-page h2 {
    font-size: 1.8rem;
  }
}
