/* =====================
   BASE
===================== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.section {
    padding: 40px 15%;
}

.text-section {
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
}
.section p {
    font-size: 20px;
}

/* =====================
   HEADINGS & TEXT
===================== */

.text-section h2,
.center-heading {
    font-size: 30px;      /* main section title */
    margin-bottom: 22px;
}

.text-section h3 {
    font-size: 24px;      /* sub headings */
}

.text-section h4 {
    font-size: 18px;
}

.center-heading {
    text-align: center;
    margin-bottom: 30px;
}

.left-heading {
    text-align: left;
}

.left-content {
    text-align: left;
}

.italic-line {
    font-style: italic;
    font-weight: 600;
    text-align: center;
    margin: 10px 0 5px;
    color: #2e7d32;
}

.note {
    font-style: italic;
    opacity: 0.8;
    margin-top: 15px;
}

/* =====================
   BULLETS (GLOBAL FIX)
===================== */
.soft-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.soft-list li {
    margin-bottom: 6px;
    line-height: 1.5;
    text-align: left;
    font-size: 20px;
}

/* =====================
   HERO
===================== */
 

.hero-header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo {
    height: 50px;
}

.slogan {
    font-size: 12px;
    margin-top: 4px;
    color: white;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

 

.hero-cta {
    text-align: center;
    margin-top: 20px;
}

.hero-cta .btn {
    padding: 15px 35px;
    background: #2e7d32;
    color: white;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
}

/* =====================
   PHILOSOPHY (VIDEO + TEXT)
===================== */
.philosophy-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.philosophy-video,
.philosophy-text {
    flex: 1;
}

.philosophy-video video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

/* =====================
   PLACE (TEXT + IMAGE)
===================== */
.place-wrapper {
    display: flex;
    gap: 40px;
}

.place-text,
.place-image {
    flex: 1;
}

.place-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

/* =====================
   GUIDED RETREATS (2 COLUMN)
===================== */
.guided-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.guided-text,
.guided-image {
    flex: 1;
}

.guided-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

/* =====================
   SEASON CARDS
===================== */
.season-card {
    background: #f9f9f9;
    padding: 28px;
    margin: 30px 0;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.season-card h3 {
    margin-top: 0;
    color: #1b3a2f;
}

/* =====================
   EXPERIENCES
===================== */
.experiences-wrapper {
    display: flex;
    gap: 40px;
}

.experiences-text,
.experiences-image {
    flex: 1;
}

.experiences-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

/* =====================
   HOW IT WORKS (BOX GRID)
===================== */
.how-it-works-section {
    background: #f6f6f6;
}

.how-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.how-box {
    background: white;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: left;
}

.how-box.full-width {
    grid-column: span 2;
}
.bg-light {
    background: #f5f5f5;
}

.bg-dark {
    background: #1b3a2f;
    color: white;
}

/* =====================
   FOOTER
===================== */
footer {
    background: #0f241c;
    color: white;
    text-align: center;
    padding: 15px;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {

    .hero-img {
        height: 50vh;
    }

    .logo {
        height: 40px;
    }

    .slogan {
        font-size: 10px;
    }

    .philosophy-wrapper,
    .place-wrapper,
    .guided-wrapper,
    .experiences-wrapper {
        flex-direction: column;
    }

    .philosophy-video video,
    .place-image img,
    .guided-image img,
    .experiences-image img {
        height: 220px;
    }

    .how-box-wrapper {
        grid-template-columns: 1fr;
    }

    .how-box.full-width {
        grid-column: span 1;
    }
   .text-section p {
        font-size: 16px;
        line-height: 1.6;
    }

    .soft-list li {
        font-size: 16px;
    }

    .text-section h2,
    .center-heading {
        font-size: 24px;
    }

    .text-section h3 {
        font-size: 20px;
    }
    .section {
        padding: 30px 8%;
    }
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(46,125,50,0.95);/* dark forest green */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 42px;
}

/* LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: #e7efe9;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* BOOK BUTTON */
.nav-btn {
    padding: 8px 16px;
    border: 1px solid #9bbfa8;
    border-radius: 20px;
    font-size: 14px;
}

/* MOBILE TOGGLE */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        right: 0;
        background: #0f2f24;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 12px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* =====================
   HERO SECTION
===================== */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 460px;           /* Desktop height */
  overflow: hidden;
}

.hero-wrapper .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* Cover hero area without stretching */
  display: block;
}

.hero-wrapper .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);  /* Dark overlay */
  z-index: 1;
}

.hero-wrapper .hero-text {
  position: absolute;
  bottom: 20px;           /* Distance from bottom */
  left: 20px;             /* Distance from left */
  color: #fff;
  z-index: 2;
  max-width: 60%;         /* Prevent text overflow */
  
  /* Fade-in animation */
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;  /* 1.5s animation */
}

/* Individual text elements animation delay */
.hero-wrapper .hero-text h2 {
  margin: 0;
  font-size: 2rem;
  animation-delay: 0.3s; /* Slight delay for heading */
}

.hero-wrapper .hero-text p {
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.5;
  animation-delay: 0.6s; /* Delay for paragraph */
}

/* =====================
   HERO FADE-IN KEYFRAMES
===================== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Start slightly below */
  }
  100% {
    opacity: 1;
    transform: translateY(0);    /* Final position */
  }
}

/* =====================
   HERO MOBILE
===================== */
@media (max-width: 768px) {
  .hero-wrapper {
    height: 240px;       /* Smaller banner for phones */
  }

  .hero-wrapper .hero-text h2 {
    font-size: 1.4rem;
  }

  .hero-wrapper .hero-text p {
    font-size: 0.9rem;
  }

  .hero-wrapper .hero-text {
    max-width: 80%;       /* Fit smaller screens */
  }
}

/* =====================
   SUB MENU
===================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background:  rgba(46,125,50,0.95);
    min-width: 180px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.12);
}

/* Desktop hover */
.nav-dropdown:hover .dropdown-menu {
    display: block;
}

