.gallery-dots {
    margin-top: 10px;
}
.gallery-dot {
    outline: none;
    border: none;
    background: #ccefdc;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(15,125,71,0.08);
    cursor: pointer;
}
.gallery-dot.active,
.gallery-dot:focus {
    background: #0f7d47 !important;
    box-shadow: 0 2px 8px rgba(15,125,71,0.18);
}

/* VISION SECTION */
.vision-section {
    background: linear-gradient(135deg, #f0f9f5 0%, #e8f5f0 100%);
    margin-top: 40px;
}

.vision-section h2 {
    color: #0f7d47;
    margin-bottom: 30px;
}

.vision-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth in-page anchor scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff; /* clean white */
    color: #333;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #0f7d47; /* rich green */
    border-bottom: 3px solid #0b5a34;
    /* ensure Bootstrap utility classes like `bg-light` don't hide our theme */
}

/* NAVBAR BRAND & LINKS */
.navbar-brand {
    font-family: "Playfair Display", serif;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar .nav-link {
    display: inline-block;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    margin-left: 8px;
    transition: background 0.22s, color 0.22s, transform 0.12s, box-shadow 0.22s;
    font-weight: 600;
    background: rgba(255,255,255,0.04); /* subtle button background */
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.navbar .nav-link:hover {
    background: rgba(255,255,255,0.12);
    color: #083e23;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.navbar .nav-link.active,
.navbar .nav-link:focus {
    background: rgba(255,255,255,0.10);
    color: #d9ffd9;
}

/* Make nav links look like subtle buttons on larger screens */
@media (min-width: 992px) {
    .navbar .nav-link {
        padding: 10px 18px;
    }
}

/* If someone uses Bootstrap's bg-light on the navbar, enforce our theme */
.navbar.bg-light {
    background-color: #0f7d47 !important;
    border-bottom-color: #0b5a34 !important;
}

/* Ensure collapsed mobile menu keeps dark background and white links */
.navbar .navbar-collapse {
    background: transparent;
}

.navbar .navbar-collapse.show {
    background: rgba(15,125,71,0.98);
}

/* Override Bootstrap toggler appearance so icon is visible on green */
.navbar-toggler {
    border-color: rgba(255,255,255,0.18);
}

.navbar-toggler-icon {
    filter: invert(1) hue-rotate(180deg) saturate(0.6);
}

/* Force link colors in other nav markup to white when inside .navbar */
.navbar a,
.navbar .navbar-brand,
.navbar .nav-link {
    color: #fff !important;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #d9ffd9; /* pale mint highlight */
}

/* HERO SECTION */
.hero {
    height: 80vh;
    background: url("../images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 125, 71, 0.55); /* green overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.hero h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 600;
}

.hero p {
    margin: 15px 0 25px;
    font-size: 18px;
    color: #e7ffe7;
}

/* BUTTON */
.btn {
    display: inline-block;
    background: #0f7d47;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background: #0b5a34;
}

/* FEATURES SECTION */
.features {
    padding: 60px 40px;
    text-align: center;
}

.features h2 {
    font-size: 32px;
    color: #0f7d47;
    margin-bottom: 40px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-box {
    background: #f7fff7;
    padding: 25px;
    border-radius: 10px;
    width: 260px;
    border: 1px solid #d1f2d1;
    transition: 0.3s;
}

.feature-box img {
    width: 70px;
    margin-bottom: 15px;
}

.feature-box:hover {
    transform: translateY(-7px);
    border-color: #0f7d47;
    box-shadow: 0px 5px 15px rgba(0, 50, 0, 0.1);
}

/* GALLERY PREVIEW */
.preview {
    padding: 60px 40px;
    text-align: center;
}

.preview h2 {
    color: #0f7d47;
    font-size: 30px;
    margin-bottom: 30px;
}

.preview-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.preview-grid img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ccefdc;
    transition: 0.3s;
}

.preview-grid img:hover {
    transform: scale(1.05);
    border-color: #0f7d47;
}

.see-more {
    margin-top: 25px;
}

/* HORIZONTAL AUTO-SCROLLING GALLERY */
.gallery-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    touch-action: pan-y;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    background: #f8f9fa;
    border-radius: 16px;
    min-height: 210px;
    position: relative;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 18px;
    align-items: center;
    min-width: fit-content;
    transition: transform 0.3s ease-out;
    cursor: grab;
}


.gallery-frame {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.gallery-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    opacity: 0.85;
    border: none;
    background: #fff;
    color: #0f7d47;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    outline: none;
    z-index: 2;
}
.gallery-btn:hover, .gallery-btn:focus {
    background: #0f7d47;
    color: #fff;
    box-shadow: 0 4px 16px rgba(15,125,71,0.18);
}

.gallery-track img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ccefdc;
    user-select: none;
    -webkit-user-select: none;
}

/* Pause on hover */
.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes gallery-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* HERO BUTTON */
.hero-btn {
    display: inline-block;
    background: #0f7d47;
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    z-index: 10;
    position: relative;
}

.hero-btn:hover {
    background: #0b5a34;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #1ab054;
    transform: scale(1.1);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #0f7d47;
    color: #e5fbe5;
    font-size: 14px;
}

/* TEA CARD STYLING */
.tea-card {
    transition: 0.3s;
    border: 1px solid #d1f2d1;
}

.tea-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(15, 125, 71, 0.15) !important;
}

.tea-card img {
    height: 200px;
    object-fit: cover;
}

/* GALLERY IMAGE STYLING */
#gallery img {
    transition: 0.3s;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .cta-banner h3 {
        font-size: 1.5rem;
    }
    
    .cta-banner p {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        margin-bottom: 15px;
    }
    
    .hero-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .preview-grid img,
    .feature-box {
        width: 100%;
        max-width: 330px;
    }
}
