:root {
    --cream: #FDFBF7;
    --latte: #E6DCCD;
    --mocha: #8D7B68;
    --dark: #2C2724;
    --white: #FFFFFF;
    --green-acc: #A4C639;
    --brown-ftr: #4E342E;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 15px;
    --shadow: 0 10px 30px -5px rgba(0,0,0,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 13px; 
    scroll-behavior: smooth;
    width: 100%; 
    height: 100%;
    overscroll-behavior-y: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; }
h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: 3rem; margin-bottom: 1rem; color: var(--dark); }
p { color: #666; margin-bottom: 1.5rem; font-size: 1.1rem; }

.section-tag { 
    display: block; font-size: 0.9rem; letter-spacing: 2px; 
    text-transform: uppercase; color: var(--mocha); 
    margin-bottom: 15px; font-weight: 600; 
}

.container { max-width: 1250px; margin: 0 auto; } 
.section-pad { padding: 70px 5%; } 
.bg-cream { background-color: var(--cream); }
.bg-dark { background-color: var(--dark); color: var(--white); }
.center-text { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.flex-row { display: flex; gap: 60px; align-items: center; }
.col-half { flex: 1; }
.full-width { width: 100%; }
.hidden { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.show { opacity: 1; transform: translateY(0); }


.navbar {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 4%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.logo-container { display: flex; align-items: center; gap: 12px; }
.nav-logo { 
    height: 55px; width: 55px; 
    border-radius: 50%; object-fit: cover; 
    border: 2px solid var(--mocha); padding: 2px; 
}
.brand-name { 
    font-family: var(--font-head); font-size: 1.3rem; 
    font-weight: 700; color: var(--dark); white-space: nowrap; 
}

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { 
    text-decoration: none; color: var(--dark); 
    font-weight: 600; font-size: 1rem; transition: 0.3s; 
}
.nav-links a:hover { color: var(--mocha); }

.btn-nav {
    padding: 10px 25px;
    border: 2px solid var(--mocha);
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    color: var(--dark);
    font-weight: 600;
}
.btn-nav:hover {
    background-color: var(--mocha);
    color: #ffffff !important; 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(141, 123, 104, 0.3);
}

.mobile-toggle { display: none; font-size: 1.6rem; cursor: pointer; color: var(--dark); }


.hero { 
    height: 100vh; position: relative; 
    display: flex; align-items: center; justify-content: center; 
    text-align: center; overflow: hidden; 
}
.hero-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-size: cover; background-position: center; 
    opacity: 0; transition: opacity 1.5s ease-in-out; z-index: -1; 
}
.hero-bg.active { opacity: 1; }
.hero::after { 
    content: ''; position: absolute; top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.35); 
    z-index: 0; 
}

.hero-content { z-index: 1; color: var(--white); max-width: 850px; padding: 20px; }
.sub-title { font-family: var(--font-head); font-style: italic; font-size: 1.8rem; opacity: 0.95; }
.hero-content h1 { color: var(--white); margin-top: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero-content p { color: #f5f5f5; font-size: 1.2rem; margin-bottom: 35px; }

.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn-primary { 
    padding: 16px 40px; background-color: var(--mocha); 
    color: var(--white); border-radius: 50px; 
    text-decoration: none; border: none; cursor: pointer; 
    display: inline-block; font-size: 1.1rem; font-weight: 600; transition: 0.3s; 
}
.btn-primary:hover { transform: translateY(-3px); background: var(--white); color: var(--dark); }

.btn-secondary {
    padding: 16px 40px; background-color: transparent;
    border: 2px solid var(--white); color: var(--white);
    border-radius: 50px; text-decoration: none; font-size: 1.1rem;
    font-weight: 600; transition: 0.3s; display: inline-flex; align-items: center; gap: 10px;
}
.btn-secondary:hover { background-color: var(--white); color: var(--dark); }

.scroll-indicator { 
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); 
    color: var(--white); z-index: 2; animation: bounce 2s infinite; 
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }


.image-stack { position: relative; padding: 10px; }
.img-soft { width: 100%; border-radius: var(--radius); box-shadow: 20px 20px 0 var(--latte); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.soft-card { 
    background: var(--white); padding: 50px 30px; 
    border-radius: var(--radius); text-align: center; 
    box-shadow: var(--shadow); transition: transform 0.3s;
}
.soft-card:hover { transform: translateY(-5px); }
.icon-box { font-size: 3rem; color: var(--mocha); margin-bottom: 25px; }

.gallery-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 220px; 
    gap: 15px;
}
.g-item { 
    overflow: hidden; border-radius: var(--radius); 
    position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}
.g-item img, .g-item video { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.6s ease; 
}
.g-item:hover img { transform: scale(1.1); }
.g-item.tall { grid-row: span 2; } 

.download-box {
    display: flex; align-items: center; gap: 20px;
    background: var(--white); padding: 20px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    text-decoration: none; transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.05); max-width: 400px;
}
.download-box:hover { transform: translateY(-5px); border-color: var(--mocha); }
.icon-pdf { font-size: 2.5rem; color: #e74c3c; }
.text-pdf h4 { font-size: 1.2rem; color: var(--dark); margin: 0; }
.text-pdf span { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.arrow-pdf { margin-left: auto; color: var(--mocha); }


.contact-wrapper { 
    display: flex; gap: 50px; align-items: stretch; 
    background: var(--white); border-radius: var(--radius); 
    overflow: hidden; 
}
.contact-info-box { flex: 1; padding: 20px 0; }
.info-big { display: flex; gap: 25px; margin-bottom: 40px; align-items: flex-start; }
.icon-circle { 
    width: 60px; height: 60px; background-color: var(--cream); 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; font-size: 1.5rem; color: var(--mocha); flex-shrink: 0; 
}
.info-text h4 { font-size: 1.4rem; margin-bottom: 8px; color: var(--dark); }
.info-text p { margin-bottom: 10px; line-height: 1.6; color: #666; }

.direction-link { color: var(--mocha); font-weight: 700; text-decoration: none; transition: 0.3s; }
.direction-link:hover { color: var(--dark); padding-left: 5px; }
.phone-links a { display: block; text-decoration: none; color: #555; font-size: 1.1rem; margin-bottom: 5px; }
.phone-links a:hover { color: var(--mocha); }

.contact-map-box { 
    flex: 1; min-height: 500px; 
    border-radius: var(--radius); overflow: hidden; 
    box-shadow: var(--shadow); 
}



.main-footer { 
    background-color: var(--brown-ftr); 
    color: #ffffff; 
    padding: 80px 5%; 
    border-top: 6px solid var(--green-acc); 
    font-size: 14px;
}
.footer-grid { 
    display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; 
    gap: 60px; align-items: start;
}
.footer-col h3 { 
    color: var(--green-acc); font-size: 1.3rem; 
    text-transform: uppercase; margin-bottom: 25px; 
    letter-spacing: 1px; font-weight: 700;
}

.f-logo { width: 90px; border: 2px solid var(--green-acc); border-radius: 50%; margin-bottom: 25px; padding: 3px; }
.icon-text { display: flex; gap: 15px; margin-bottom: 20px; color: #f0f0f0; font-size: 1rem; line-height: 1.6; }
.icon-text i { color: var(--green-acc); font-size: 1.2rem; margin-top: 3px; }


.f-links { list-style: none; } 
.f-links a { color: #e0e0e0; text-decoration: none; font-size: 1.1rem; display: block; margin-bottom: 12px; transition: 0.3s; }
.f-links a:hover { color: var(--green-acc); transform: translateX(5px); }

.f-socials { display: flex; gap: 15px; margin-bottom: 15px; }
.f-socials a { 
    background: rgba(255,255,255,0.1); width: 45px; height: 45px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; color: var(--green-acc); font-size: 1.2rem; 
    text-decoration: none; transition: 0.3s; 
}
.f-socials a:hover { background: var(--green-acc); color: var(--brown-ftr); }
.credits { opacity: 0.6; font-size: 0.9rem; }


.timing-box {
    margin-bottom: 25px; border-left: 3px solid var(--green-acc);
    padding-left: 15px; background: rgba(0,0,0,0.1); 
    padding: 15px; border-radius: 0 10px 10px 0;
}
.time-label { display: block; color: #ffffff; font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; }
.cuisine-text { color: #C0E85A; font-size: 1rem; margin: 0; font-weight: 500; }



.whatsapp-float { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    width: 60px; 
    height: 60px; 
    background: #25d366; 
    color: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 32px; 
    z-index: 10000; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    transition: transform 0.3s; 
}
.whatsapp-float:hover { transform: scale(1.1); }



@media (max-width: 900px) {
    
    html { font-size: 11px; } 

    .section-pad { padding: 40px 5%; }
    h1 { font-size: 3rem; } 
    h2 { font-size: 2.2rem; }
    .flex-row { flex-direction: column; gap: 40px; }
    
    .navbar { padding: 10px 5%; }
    .brand-name { font-size: 1.2rem; max-width: 200px; white-space: normal; line-height: 1.2; }
    .nav-logo { width: 45px; height: 45px; }

    .mobile-toggle { display: block; }
    .nav-links { display: none; } 
    
    .nav-links.active {
        display: flex; 
        flex-direction: column;
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%;
        background-color: var(--white); 
        padding: 30px 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
        border-top: 1px solid #eee;
        z-index: 9998;
        animation: slideDown 0.3s ease forwards;
    }
    .nav-links.active li { margin: 15px 0; text-align: center; }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

    .mobile-hint { display: block; text-align: center; color: #aaa; font-size: 0.9rem; margin-bottom: 10px; }
    .grid-3.swipe-container {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        gap: 15px; padding-bottom: 20px; padding-left: 5px;
    }
    .grid-3::-webkit-scrollbar { display: none; }
    .soft-card { min-width: 260px; scroll-snap-align: center; margin-right: 5px; }

    .gallery-layout { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
    .g-item.tall { grid-row: span 2; }

    .contact-wrapper { flex-direction: column; }
    .contact-map-box { min-height: 300px; order: -1; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .main-footer { padding: 50px 5%; }
}