/* GLOBAL FONTS */
body{
    font-family:'Poppins', sans-serif;
    }
    
    .side-links a,
    .menu-text{
    font-family:'Playfair Display', serif;
    letter-spacing:1px;
    }
/*home styles*/

.hero-logo{
    width:400px;
    }
    
    .hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    }

    /* COLOR THEME */
:root {
    --army-green: #3e5c2f;
    --soft-yellow: #d4e157;
}

/* NAVBAR */
.custom-navbar {
    background-color: var(--army-green);
    transition: 0.3s ease;
}

.custom-link {
    color: white !important;
    margin-left: 20px;
    transition: 0.3s;
}

.custom-link:hover {
    color: var(--soft-yellow) !important;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
}

.overlay{
    z-index:1;
}

.side-menu{
    z-index:2000;
}

.menu-backdrop{
    z-index:1500;
}

.menu-toggle{
    z-index:2500;
}

.side-menu,
.menu-backdrop{
    isolation:isolate;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.logo-text {
    font-size: 4rem;
    font-weight: bold;
}

/* Vertical Dots */
.hero-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.4;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--soft-yellow);
    opacity: 1;
}



    /* Nav Styles */
.nav-logo{
    width:120px;
    }
    .logo-container{
        position:fixed;
        top:20px;
        left:30px;
        z-index:1000;
        background:transparent;
        pointer-events:auto;
        }

.logo-container,
.menu-toggle{
    position:fixed;
}

/* HIDE NAVBAR COMPLETELY */
.nav-hidden{
    display:none !important;
}
    /* MENU BUTTON */
    .menu-toggle{
    position:fixed;
    top:30px;
    right:30px;
    color:white;
    cursor:pointer;
    z-index:999;
    display:flex;
    align-items:center;
    gap:8px;
    }
    
    .menu-text{
    font-size:20px;
    }
    
    .menu-icon{
    font-size:26px;
    }
    
    /* BACKDROP */
    .menu-backdrop{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(100,100,100,0.25);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:998;
    }
    
    .menu-backdrop.show{
    opacity:1;
    visibility:visible;
    }
    
    /* SIDE MENU */
    .side-menu{
        position:fixed;
        top:0;
        right:0;
        width:360px;   /* 🔥 CHANGE THIS ANYTIME */
        height:100%;
        background:rgba(50,50,50,0.75);
        backdrop-filter:blur(18px);
        -webkit-backdrop-filter:blur(18px);
        transform:translateX(100%);
        transition:0.4s ease;
        z-index:999;
        padding-top:90px;
        }
    
    .side-menu.open{
        transform:translateX(0);
        }
    
    /* LINKS */
    .side-links{
    list-style:none;
    padding:0 35px;
    }
    
    .side-links li{
    margin:22px 0;
    }
    
    .side-links a{
    color:rgb(255, 255, 255);
    font-size:22px;
    text-decoration:none;
    transition:0.3s ease;
    display:block;
    }
    
    /* HOVER EFFECT */
    .side-links a:hover{
    color:#d4e157;
    padding-left:12px;
    text-shadow:0 0 8px #9acd32;
    }
    
    /* CLOSE */
    .close-btn{
    position:absolute;
    top:18px;
    right:25px;
    font-size:28px;
    color:white;
    cursor:pointer;
    }
    
@media(max-width:768px){

.menu-toggle{
    top:50px;
    right:25px;
}

.menu-toggle .menu-text{
    font-size:22px !important;
}

.menu-toggle .menu-icon{
    font-size:22px !important;
}

.logo-container .nav-logo{
    width:100px !important;
}

}
@media(max-width:768px){

/* HERO SECTION SMALLER */
.hero{
    height:65vh;
}

/* HERO LOGO SMALLER */
.hero-logo{
    width:200px;
}

/* HERO CONTENT SLIGHTLY HIGHER */
.hero-content{
    top:45%;
}

/* HERO DOTS SMALLER + POSITIONED */
.hero-dots{
    right:15px;
    top:60%;
}

.dot{
    width:8px;
    height:8px;
}

/* ORDER NOW BUTTON SMALLER */
.order-now-btn{
    bottom:20px;
    font-size:12px;
    padding:8px 16px;
}

}
    /* DROPDOWN */
.dropdown-toggle-custom{
    cursor:pointer;
    }
    
    .gallery-submenu{
    list-style:none;
    padding-left:15px;
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
    }
    
    .gallery-submenu li{
    margin:12px 0;
    }
    
    .gallery-submenu a{
    font-size:18px;
    color:#ccc;
    }
    
    .gallery-submenu a:hover{
    color:#d4e157;
    padding-left:8px;
    }
    
    /* Show Dropdown */
    .gallery-submenu.open{
    max-height:200px;
    }

    .side-links a{
        font-weight:600;
        }
        
        .menu-text{
        font-weight:600;
        }
        
        

        /* CENTER LOGO IN FOOTER */
        /* FOOTER */
.footer-section{
    background:linear-gradient(to right,#1f1f1f,#2e2e2e);
    color:#ddd;
    padding:70px 0 30px;
    margin-top:80px;
    border-top:2px solid #c6a961;   /* ✨ Thin premium gold line */
    }

.footer-logo-wrapper{
    display:flex;
    justify-content:center;
    }
    
    @media(min-width:992px){
    .footer-logo-wrapper{
    justify-content:flex-start;
    }
    }
    
/* CONTACT LINKS */  
.footer-contact-link{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
    }
    
    .footer-contact-link:hover{
    color:#d4e157;
    }

    /* WHATSAPP FLOAT */
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    z-index:999;
    transition:0.3s ease;
    text-decoration:none;
    }
    
    /* HOVER EFFECT */
    .whatsapp-float:hover{
    background:#1ebe5d;
    transform:scale(1.1);
    box-shadow:0 8px 20px rgba(0,0,0,0.4);
    }
    
    /* MOBILE ADJUST */
    @media(max-width:768px){
    .whatsapp-float{
    width:50px;
    height:50px;
    font-size:24px;
    bottom:20px;
    right:20px;
    }
    }
    
    /* DEVELOPER LINK */
    .developer-link{
    color:#d4e157;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
    }
    
    .developer-link:hover{
    color:#fff;
    text-shadow:0 0 8px #d4e157;
    }
    

/* FOOTER */
.footer-section{
    background:linear-gradient(to right,#1f1f1f,#2e2e2e);
    color:#ddd;
    padding:70px 0 30px;
    margin-top:80px;
    }
    
    .footer-logo{
    width:190px;
    }
    
    .footer-title{
    font-family:'Playfair Display', serif;
    color:#fff;
    margin-bottom:20px;
    }
    
    .footer-text{
    font-size:14px;
    color:#bbb;
    }
    
    .footer-links,
    .footer-hours{
    list-style:none;
    padding:0;
    }
    
    .footer-links li,
    .footer-hours li{
    margin-bottom:10px;
    font-size:14px;
    color:#bbb;
    }
    
    .footer-links a{
    text-decoration:none;
    color:#bbb;
    transition:0.3s;
    }
    
    .footer-links a:hover{
    color:#d4e157;
    padding-left:6px;
    }
    
    .social-icons a{
    color:#bbb;
    font-size:20px;
    margin-right:15px;
    transition:0.3s;
    }
    
    .social-icons a:hover{
    color:#d4e157;
    transform:translateY(-4px);
    }
    
    .footer-divider{
    border-color:#444;
    margin:40px 0 20px;
    }
    
    .footer-bottom{
    font-size:13px;
    color:#888;
    }
    
    /* MOBILE */
    @media(max-width:768px){
    .footer-section{
    text-align:center;
    }
    .social-icons{
    justify-content:center;
    }
    }

/* ORDER NOW CTA MAIN CIRCLE */
.order-now-btn{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:150px;
    background:linear-gradient(145deg,#c6a961,#e4c878);
    color:#1f1f1f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-family:'Cinzel Decorative', serif;
    font-size:18px;
    letter-spacing:1px;
    text-decoration:none;
    z-index:5;
    box-shadow:0 12px 30px rgba(0,0,0,0.35);
    transition:0.3s ease;
    }
    
    /* OUTER RING */
    .order-now-btn::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:2px solid #e4c878;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    opacity:0.8;
    transition:0.4s ease;
    }
    
    /* HOVER EFFECT */
    .order-now-btn:hover{
    transform:translateX(-50%) scale(1.08);
    box-shadow:0 18px 40px rgba(0,0,0,0.45);
    }
    
    .order-now-btn:hover::before{
    width:200px;
    height:200px;
    opacity:1;
    }
    
    @keyframes ringPulse{
        0%{ transform:translate(-50%,-50%) scale(1); opacity:0.7;}
        50%{ transform:translate(-50%,-50%) scale(1.05); opacity:1;}
        100%{ transform:translate(-50%,-50%) scale(1); opacity:0.7;}
        }
        
        .order-now-btn::before{
        animation:ringPulse 3s infinite ease-in-out;
        }

    /* MOBILE */
    @media(max-width:768px){
    .order-now-btn{
    width:120px;
    height:120px;
    font-size:15px;
    bottom:-45px;
    }
    
    .order-now-btn::before{
    width:145px;
    height:145px;
    }
    }

    /* HOME BODY */

/* FIRST SECTION AFTER HERO */
.after-hero-section{
    padding-top:120px;  /* creates space for circle overlap */
    padding-bottom:80px;
    text-align:center;
    background:#fff;
    position:relative;
    }

    /* LEAF ICON */
.mini-leaf{
    width:300px;
    margin-bottom:10px;
    }
    
    /* TEXT SECTION */
    .after-hero-text{
        font-family:'Playfair Display', serif;
        color:#3e5c2f;
        font-size:35px;
        max-width:750px;
        margin:0 auto;
        line-height:1.3;
        letter-spacing:1.5px;
        font-weight:700;
        }
    
    /* MOBILE */
    @media(max-width:768px){
        .after-hero-text{
        font-size:28px;
        padding:0 20px;
        }
        
    .mini-leaf{
    width:300px;
    }
    }

 /* HOME CARDS SECTION */

.flip-card{
    width:100%;
    height:520px;
    perspective:1000px;
    cursor:pointer;
    transition:0.3s ease;
    }
    
    /* SHADOW LIFT */
    .flip-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
    }
    
    .flip-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:0.6s ease;
    transform-style:preserve-3d;
    }
    
    /* FLIP ACTIVE */
    .flip-card.flipped .flip-inner{
    transform:rotateY(180deg) scale(1.03);
    }
    
    /* FRONT */
    .flip-front{
    position:absolute;
    width:100%;
    height:100%;
    backface-visibility:hidden;
    overflow:hidden;
    border-radius:12px;
    }
    
    .card-img{
    width:100%;
    height:100%;
    object-fit:cover;
    }
    
    /* LOGO ON HOVER */
    .logo-hover{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.80);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
    }
    
    .flip-card:hover .logo-hover{
    opacity:1;
    }
    
    .hover-logo{
    width:350px;
    filter:drop-shadow(0 5px 15px rgba(0,0,0,0.8));
    }
    
    /* BACK PREMIUM MIX */
    .flip-back{
    position:absolute;
    width:100%;
    height:100%;
    transform:rotateY(180deg);
    backface-visibility:hidden;
    border-radius:12px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:25px;
    color:white;
    
    background:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
    linear-gradient(145deg,#3e5c2f,#c6a961);
    }
    .flip-back h3{
        font-family:'Playfair Display', serif;
        color:#e4c878;
        font-size:32px;
        letter-spacing:1px;
        margin-bottom:10px;
        }
        
        .flip-back p{
        font-family:'Playfair Display', serif;
        color:#ddd;
        font-size:20px;
        line-height:1.4;
        }
/* ===== WHATSAPP RESERVE LINK ===== */

.reserve-link{
    display:block;
    margin-top:10px;
    font-weight:600;
    color:#ffffff;
    text-decoration:none;
    transition:0.3s ease;
}

.reserve-link:hover{
    color:#e4c878;
}

/* ===== RAMADAN CRESCENT MOON ===== */

.ramadan-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.crescent-moon{
    position:relative;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#d4e157; /* soft yellow to match your theme */
}

/* create the crescent cut */
.crescent-moon::after{
    content:"";
    position:absolute;
    top:2px;
    left:6px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:rgba(50,50,50,0.9); /* same as flip-back bg */
}

/* mobile smaller */
@media(max-width:768px){
    .crescent-moon{
        width:16px;
        height:16px;
    }
}
    @media(max-width:768px){
    .flip-card{
    height:420px;
    }
    .hover-logo{
    width:250px;
    }
    }
    @media(max-width:768px){
        .flip-back h3{
        font-size:26px;
        }
        .flip-back p{
        font-size:18px;
        }
        }

/* about us home*/

.about-paper-section{
    background:#e7d3b1;
    padding:100px 0;
    position:relative;
    }

    .about-photo-box{
        width:55%;   /* smaller image */
        position:relative;
        z-index:1;
        }
        
        .about-img{
            width:100%;
            height:550px;        /* control image height here */
            object-fit:cover;
            object-position:bottom;  /* 👈 keeps bottom visible */
            border-radius:10px;
            box-shadow:0 15px 40px rgba(0,0,0,0.25);
            }
        
    .about-content-box{
            width:55%;
            background:#fff;
            position:absolute;
            right:0;
            bottom:-60px;
            padding:40px;
            border-radius:10px;
            z-index:2;
            box-shadow:0 20px 40px rgba(0,0,0,0.15);
            }
            .about-leaf{
                position:absolute;
                top:-120px;
                left:50%;
                transform:translateX(-50%);
                }
                
     .about-leaf img{
                width:300px;
                }


     .about-title{
        font-family:'Playfair Display', serif;
        color:#3e5c2f;
        font-size:36px;
        margin-bottom:15px;
        }
        
        .about-text{
        font-family:'Playfair Display', serif;
        color:#5a4a3c;
        font-size:20px;
        line-height:1.6;
        }

        .about-btn{
            display:inline-block;
            margin-top:20px;
            background:linear-gradient(145deg,#3e5c2f,#c6a961);
            color:#fff;
            padding:10px 25px;
            border-radius:30px;
            text-decoration:none;
            font-family:'Playfair Display', serif;
            transition:0.3s;
            }
            
            .about-btn:hover{
            background:linear-gradient(145deg,#c6a961,#3e5c2f);
            }

@media(max-width:768px){            
    .about-photo-box{
        width:100%;
        }
        
        .about-content-box{
        position:relative;
        width:100%;
        bottom:0;
        margin-top:-40px;
        }
        
        }
                

 @media(max-width:768px){               
    .about-img{
        height:240px;
        }
        }                 
    .difference-section{
        background:#e7d3b1;
        padding:90px 0;
        } 

.diff-leaf img{
    width:60px;
    }

/* ============================= */
/* HOME 3 CARDS SECTION */
/* ============================= */

/* SECTION BACKGROUND */
.difference-section{
    background:#ffffff;
    padding:90px 0;
    }
    
    /* TOP LEAF */
    .diff-leaf img{
    width:300px;
    margin-bottom:5px;
    }
    
    /* TITLE */
    .diff-title{
    font-family:'Playfair Display', serif;
    color:#3e5c2f;
    font-size:38px;
    margin-bottom:30px;
    }
    
    /* CARD BASE */
    .diff-card{
    background:#e7d3b1;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    position:relative;
    transition:0.3s ease;
    }
    
    /* OPTIONAL HOVER LIFT */
    .diff-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
    }
    
    /* IMAGE WRAP */
    .diff-img-wrap{
    position:relative;
    }
    
    .diff-img{
    width:100%;
    height:270px;
    object-fit:cover;
    }
    
    /* OVERLAP LEAF */
    .divider-leaf{
    position:absolute;
    bottom:-65px;
    left:50%;
    transform:translateX(-50%);
    z-index:2;
    }
    
    .divider-leaf img{
    width:200px;
    }
    
    /* TEXT */
    .diff-text{
    padding:55px 25px 35px;
    text-align:center;
    }
    
    .diff-text h4{
    font-family:'Playfair Display', serif;
    color:#3e5c2f;
    font-size:28px;
    margin-bottom:10px;
    }
    
    .diff-text p{
    font-family:'Playfair Display', serif;
    color:#5a4a3c;
    font-size:16px;
    line-height:1.5;
    }
    
    /* MOBILE */
    @media(max-width:768px){
    
    .diff-img{
    height:180px;
    }
    
    }

    
/* HOME GALLERY */

.home-gallery-preview{
background:linear-gradient(to right,#1f1f1f,#2e2e2e);
padding:60px 0;
}

.gallery-img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

.gallery-img:hover{
transform:scale(1.03);
}

/* LIGHTBOX */

.lightbox{
display:none;
position:fixed;
z-index:1000;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
}

.lightbox-content{
max-width:80%;
max-height:80%;
border-radius:10px;
}

.close-lightbox{
position:absolute;
top:30px;
right:40px;
color:#fff;
font-size:40px;
cursor:pointer;
}
/* ONLY FOR HOME PAGE GALLERY */
.attach-footer{
    margin-bottom:-80px;   /* same value as footer margin-top */
    padding-bottom:80px;   /* prevents content cutting */
    background:linear-gradient(to right,#1f1f1f,#2e2e2e);
    position:relative;
    z-index:1;
    }

/*farm section*/
.farm-experience-section{
    background:linear-gradient(to right,#1f1f1f,#2e2e2e);
    padding:80px 0;
    }
.farm-img-box{
width:100%;
overflow:hidden;
border-radius:10px;
}

.farm-img{
width:100%;
height:500px;     /* 🔥 YOU CONTROL HEIGHT HERE */
object-fit:cover;
border-radius:10px;
}

.farm-title{
font-family:'Playfair Display', serif;
color:#e4c878; /* gold */
font-size:36px;
margin-bottom:15px;
}

.farm-text{
font-family:'Playfair Display', serif;
color:#ddd;
font-size:18px;
line-height:1.6;
}

@media(max-width:768px){

.farm-img{
height:260px;
}

}

/*ABOUT US PAGE*/
.about-hero{
height:80vh;
background:url("/static/images/about.c534d4786e77.jpg") center/cover no-repeat;
position:relative;
}

.about-hero-title{
font-family:'Playfair Display', serif;
color:#ffffff;
font-size:56px;
letter-spacing:1px;

/* SOFT GREEN SHADOW */
text-shadow:
0 0 8px rgba(62,92,47,0.9),
0 0 20px rgba(62,92,47,0.5);

background:none;   /* ensures NO BOX */
padding:0;
margin:0;
}
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
}

.about-gallery-img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
}

.about-split-section{
padding:80px 0;
background:#fff;
}

.about-split-section.alt-bg{
background:#f6f1e7;
}

.about-split-img{
width:100%;
height:480px;
object-fit:cover;
border-radius:10px;
}

.about-split-title{
font-family:'Playfair Display', serif;
color:#3e5c2f;
font-size:36px;
}

.about-split-text{
font-family:'Playfair Display', serif;
color:#5a4a3c;
font-size:20px;
line-height:1.6;
}

.review-card{
background:#e7d3b1;
padding:30px 20px;
border-radius:10px;
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.review-img{
width:100px;
height:100px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.review-card h5{
font-family:'Playfair Display', serif;
color:#3e5c2f;
}

.review-card p{
font-family:'Playfair Display', serif;
color:#5a4a3c;
}



/* MAKE REVIEW SECTION POSITIONED */
.about-reviews{
position:relative;
padding-bottom:180px; /* gives breathing room for button */
}
@media(max-width:768px){

/* ===== HERO 2 (ABOUT HERO) ===== */

.about-hero{
    height:45vh;
}

.about-hero .hero-content{
    top:50%;
}

.about-hero-title{
    font-size:28px;
}

/* ===== FOOTER 2 COLUMN LAYOUT ===== */

.footer-section .row{
    display:flex;
    flex-wrap:wrap;
}

/* make each footer column take 50% width */
.footer-section .col-lg-3{
    width:50%;
    flex:0 0 50%;
}
}


/* ===== EQUAL SIZE REVIEW CARDS ===== */

.review-card{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:25px;
}

/* Make columns stretch evenly */
.about-reviews .col-md-4{
    display:flex;
}

.review-img{
    width:100px;
    height:80px;
    object-fit:contain;
    margin:0 auto 15px auto;
}

/* Keep title spacing consistent */
.review-card h5{
    min-height:60px;
}

/* Keep paragraph area balanced */
.review-card p{
    flex-grow:1;
}

/* Optional: better spacing on mobile */
@media(max-width:768px){

.review-card{
    padding:20px;
}

.review-img{
    width:70px;
    height:70px;
}

}

.farm-hero{
background:url("/static/images/about4.632e2f4bf734.jpg") center/cover no-repeat;
}

/* FARM PAGE ONLY - tighten section below hero */
.farm-hero + .after-hero-section{
    padding-top:40px;
    }

/* FARM GALLERY TITLE */
.farm-gallery-title{
font-family:'Playfair Display', serif;
color:#3e5c2f;
font-size:38px;
margin-bottom:10px;
}

.farm-gallery-subtitle{
font-family:'Playfair Display', serif;
color:#5a4a3c;
font-size:20px;
max-width:600px;
margin:0 auto;
line-height:1.5;
}

@media(max-width:768px){

/* ===== FARM HERO MOBILE ===== */

.farm-hero{
    height:45vh;
}

.farm-hero .hero-content{
    top:50%;
}

.farm-hero .about-hero-title{
    font-size:26px;
}

}

/*supermarket page*/
.supermarket-hero{
background:url("/static/images/super.8f29b10daeb1.jpg") center/cover no-repeat;
}
.super-text{
font-family:'Playfair Display', serif;
color:#5a4a3c;
font-size:20px;
max-width:600px;
margin:0 auto;
}
.super-col{
font-family:'Playfair Display', serif;
position:relative;
padding:20px;
}

.super-col:not(:last-child)::after{
content:"";
position:absolute;
top:10%;
right:0;
height:80%;
width:2px;
background:#b08d57;
}
/* CONTACT SECTION */
.super-contact{
background:#ffffff;
padding:80px 0 140px;
font-family:'Playfair Display', serif;
}

.super-contact-title{
color:#3e5c2f;
font-size:32px;
margin-bottom:15px;
}

.super-contact p{
font-size:20px;
color:#5a4a3c;
}

.super-contact a{
color:#3e5c2f;
text-decoration:none;
}

.super-social a{
margin:0 5px;
font-size:18px;
}

.super-order-wrapper{
position:relative;
}
/* REMOVE LIST DOTS */
.super-products ul{
list-style:none;
padding-left:0;
margin:0;
}

.super-products li{
margin-bottom:2px;
font-family:'Playfair Display', serif;
}

.super-social a{
margin:0 8px;
font-size:24px;
color:#c6a961;
transition:0.3s;
}

.super-social a:hover{
color:#3e5c2f;
}
.after-hero-section{
padding-bottom:10px;
}
/* BROWN SEPARATOR */
.super-contact{
background:#ffffff;
padding:80px 0 20px;
font-family:'Playfair Display', serif;
}
/* SUPERMARKET PAGE LEAF SPACING FIX */

/* FIRST LEAF AFTER HERO */
.supermarket-hero + .after-hero-section .leaf-icon-wrapper{
margin-top:0;
margin-bottom:5px;
}

/* SECOND LEAF ABOVE GALLERY */
.about-gallery .diff-leaf{
margin-top:-50px;
margin-bottom:5px;
}
/* SUPERMARKET HERO → FIRST LEAF FIX */
.supermarket-hero + .after-hero-section{
margin-top:-1px;
padding-top:0;
}
.super-link{
color:#3e5c2f;
text-decoration:none;
transition:0.3s;
}

.super-link:hover{
color:#c6a961;
}
.super-link{
cursor:pointer;
}

@media(max-width:768px){

/* ===== SUPERMARKET HERO MOBILE ===== */

.supermarket-hero{
    height:45vh;
}

.supermarket-hero .hero-content{
    top:50%;
}

.supermarket-hero .about-hero-title{
    font-size:26px;
}

}
/*Restuarant page*/

.restaurant-hero{
    background:url("/static/images/hero2.7a110f561891.jpg") center/cover no-repeat;
    }

.restaurant-hero-title{
font-family:'Playfair Display', serif;
color:#fff;
font-size:52px;
text-shadow:0 0 10px rgba(0,0,0,0.6);
}

/* ================= KOODI TABBED MENU SYSTEM ================= */

.koodi-menu{
padding:60px 0;
background:#f9faf5;
}


/* MENU TABS */

.koodi-menu .menu-tabs .nav-link {
background:#f5f5f5;
margin:5px;
border-radius:30px;
padding:8px 20px;
color:#3e5c2f;
font-weight:600;
transition:all 0.3s ease;
border:none;
outline:none;
box-shadow:none;
}

.koodi-menu .menu-tabs .nav-link.active {
background:#3e5c2f;
color:#fff;
}


/* CARD CONTAINER */

.koodi-menu .menu-cards-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}


/* MOBILE AUTO 1 CARD */
@media(max-width:768px){
.koodi-menu .menu-cards-container{
grid-template-columns:1fr;
}
}

/* MENU CARD */

.koodi-menu .menu-card{
display:flex;
background:#fff;
border-radius:12px;
overflow:hidden;
transition:all 0.4s ease;
box-shadow:0 3px 12px rgba(0,0,0,0.08);
}


/* HOVER EFFECT */

.koodi-menu .menu-card:hover{
transform:translateY(-6px) scale(1.01);
background:#3e5c2f;
color:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}


/* IMAGE */

.koodi-menu .menu-img img{
width:180px;
height:100%;
object-fit:cover;
}


/* INFO */

.koodi-menu .menu-info{
padding:15px;
flex:1;
display:flex;
flex-direction:column;
max-height:400px;
overflow-y:auto;
}

.koodi-menu .menu-info::-webkit-scrollbar {
width:4px;
}

.koodi-menu .menu-info::-webkit-scrollbar-thumb {
background:#3e5c2f;
border-radius:10px;
}


/* TITLE */

.koodi-menu .menu-item-title{
color:#3e5c2f;
font-weight:bold;
transition:0.3s;
}

.koodi-menu .menu-card:hover .menu-item-title{
color:#d4e157;
}


/* ITEM + PRICE */

.koodi-menu .menu-price-row{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:5px;
}

.koodi-menu .menu-price-row > span{
white-space:nowrap;
margin-left:10px;
align-self:flex-start;
}


/* ORDER BTN */

.koodi-menu .order-btn{
display:inline-block;
margin-top:auto;
padding:6px 14px;
background:#d4e157;
color:#000;
border-radius:20px;
text-decoration:none;
transition:0.3s;
align-self:flex-start;
}

.koodi-menu .menu-card:hover .order-btn{
background:#fff;
color:#3e5c2f;
}


/* MOBILE */

@media(max-width:768px){

.koodi-menu .menu-card{
flex-direction:column;
}

.koodi-menu .menu-img img{
width:100%;
height:180px;
}

}
@media(max-width:768px){

/* ===== RESTAURANT HERO MOBILE ===== */

.restaurant-hero{
    height:45vh;
}

.restaurant-hero .hero-content{
    top:50%;
    padding:0 15px;
}

.restaurant-hero-title{
    font-size:24px;
    line-height:1.3;
    text-align:center;
}

}

/*contact us page*/

.contact-hero{
background:url("/static/images/about1.88f3db82a13b.jpg") center/cover no-repeat;
}

/* CONTACT SECTION */
.contact-section{
background:#f6f1e7;
padding:20px 0 0;
margin-bottom:0;
}

/* CARD */
.contact-card{
background:#ffffff;
padding:20px;
border-radius:12px;
box-shadow:0 15px 30px rgba(0,0,0,0.15);
display:flex;
flex-direction:column;
justify-content:space-between;
font-family:'Playfair Display', serif;
}

/* TITLE */
.contact-title{
color:#3e5c2f;
font-size:32px;
margin-bottom:20px;
}

/* TEXT */
.contact-card p{
font-size:18px;
color:#5a4a3c;
}

/* LINKS */
.contact-link{
color:#3e5c2f;
text-decoration:none;
}

.contact-link:hover{
color:#c6a961;
}

/* MAP */
.map-box{
height:480px;
border-radius:12px;
overflow:hidden;
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* BUTTON */
.contact-map-btn{
display:block;
border:2px solid #3e5c2f;
padding:10px;
text-align:center;
border-radius:6px;
text-decoration:none;
color:#3e5c2f;
transition:0.3s;
}

.contact-map-btn:hover{
background:#3e5c2f;
color:#fff;
}

.map-box{
margin-bottom:0;
}

/* REMOVE FOOTER GAP ONLY ON CONTACT PAGE */
.contact-no-gap{
margin-bottom:-80px;
padding-bottom:80px;
position:relative;
z-index:1;
}

@media(max-width:768px){

/* ===== CONTACT HERO MOBILE ===== */

.contact-hero{
    height:45vh;
}

.contact-hero .hero-content{
    top:50%;
}

.contact-hero .about-hero-title{
    font-size:26px;
}

}


/* ===== SAME SIZE DIFFERENCE CARDS ===== */

.diff-card{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.diff-img-wrap{
    height:220px;
    overflow:hidden;
}

.diff-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.diff-text{
    flex-grow:1;
}


/* ===== GLOBAL MOBILE TEXT SIZE ===== */

@media(max-width:768px){

/* BODY TEXT */
body{
    font-size:14px;
}

/* ALL HEADINGS */
h1{font-size:26px;}
h2{font-size:22px;}
h3{font-size:20px;}
h4{font-size:18px;}
h5{font-size:16px;}
h6{font-size:15px;}

/* PARAGRAPHS */
p{
    font-size:14px;
}

/* LISTS */
li{
    font-size:14px;
}

/* LINKS */
a{
    font-size:14px;
}

/* CARD TEXT */
.diff-text h4{
    font-size:18px;
}

.diff-text p{
    font-size:14px;
}

}