* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body {
    overflow-x: hidden !important;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    padding: 0px 40px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    
}

.logo img {
    height: 95px;        
    width: auto;
    cursor: pointer;
}
.navbar .nav-links li {
    display: inline;
    margin-left: 80px;
    word-spacing: 0%;
}
.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* FORCE NAVBAR HORIZONTAL */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* MAIN NAV LINKS */
.nav-links {
    display: flex !important;     
    align-items: center;
    gap: 47px;                     
}

/* REMOVE INLINE / BLOCK ISSUE */
.nav-links li {
    display: flex !important;
    align-items: center;
    margin: 0 !important;         
    padding: 0;
}

/* SOCIAL ICON WRAPPER */
.nav-social {
    display: flex !important;     
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
}

/* ICON STYLE */
.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}

/* HOVER */
.nav-social a:hover {
    color: #7cbf8e;
    transform: translateY(-3px);
}



/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        margin-left: auto;
        z-index: 1100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;

        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 120px 25px;

        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 18px;
    }
}
 @media (max-width: 768px) {
    .navbar {
        padding: 5px 12px;   
    }
}
/* Hide hamburger and mobile menu on desktop */
.menu-toggle, .mobile-nav {
    display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    /* Show hamburger */
    .menu-toggle {
        display: block;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 1100;
    }

    /* Sidebar menu */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -260px; 
        width: 200px;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        padding: 99px 25px;
        gap: 25px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    .mobile-nav li a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
    }

    .mobile-nav.active {
        left: 0;
    }

    /* Hide desktop nav on mobile */
    .nav-links {
        display: block;
    }
}
.mobile-logo {
    text-align: center;
    margin-top: -100px;
    margin-bottom: 13px;
    transform: translateX(-50px); 
}

.mobile-logo img {
    height: 80px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;  
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 85%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
/* Text styling */
.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}
.hero-content h1 {
    
    font-size: 40px;   
    line-height: 1.3;  
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

.hero-content.show h1 {
    transition-delay: 0.2s;
}

.hero-content.show p {
    transition-delay: 0.5s;
}

.hero-content.show h1,
.hero-content.show p {
    opacity: 1;
    transform: translateY(0);
}


/* Gallery Container */
.gallery-section {
    text-align: center;
    padding: 20px 5%;
   background: linear-gradient(120deg, #fdf6e3, #eef7f1);

    margin-top: -40px; 
}
.gallery-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;

    background: linear-gradient(90deg, #1b5e20, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gallery-container {
    max-width: 1200px;
    margin: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-nav li {
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: #2f4f2f;
    background: rgba(255,255,255,0.6);
    transition: 0.4s;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.gallery-nav li:hover,
.gallery-nav li.active {
    background: linear-gradient(90deg, #66bb6a, #2e7d32);
    color: #fff;
    transform: translateY(-4px);
}


.gallery-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.gallery-content {
    text-align: center;
    z-index: 2;
}
.gallery-content h1 {
    font-size: xxx-large;
    font-weight: 700;

    background: linear-gradient(
        90deg,
        rgba(11, 104, 27, 0.95),
        rgba(49, 102, 6, 0.85),
        rgba(18, 77, 5, 0.95)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Gallery Items */

/* GALLERY CONTAINER */
.gallery-container {
    padding: 60px 6%;
    background: #f8f9f5;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* ITEM CARD */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.4s ease;
}
.gallery-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
     position: relative;
    z-index: 2;
}


/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* DARK OVERLAY */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.1),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

/* HOVER EFFECT */
.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-container {
        padding: 40px 4%;
    }

    .gallery-item img {
        height: 220px;
    }
}

/* GALLERY HEADER */
.gallery-content {
    text-align: center;
    margin-bottom: 25px;
}

.gallery-content h1 {
    font-size: 42px;
    font-weight: 600;
    color: #2f4f2f;
    letter-spacing: 2px;
}
.hero-content h1,
.hero-content p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.hero-content.show h1 {
    transition-delay: 0.2s;
}

.hero-content.show p {
    transition-delay: 0.5s;
}

.hero-content.show h1,
.hero-content.show p {
    opacity: 1;
    transform: translateY(0);
}
.gallery-content h1 {
    opacity: 0;
    transform: translateY(-25px);
    transition: all 0.8s ease;
}

.gallery-content.show h1 {
    opacity: 1;
    transform: translateY(0);
}


/* Footer */
.footer {
    position: relative;
    width: 100%;
    padding: 2px 0 0;
    color: #eaeaea;

    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
        url("../imgvideo/img/gallery3.jpeg") center / cover no-repeat;
}

/* subtle dark texture */
.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(124,191,142,0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 60%);
    z-index: 0;
}

/* ===== CONTAINER ===== */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;

    position: relative;
    z-index: 1;
}

/* ===== LOGO ===== */
.footer-logo {
    height: 100px;
    width: auto;
    cursor: pointer;
    position: relative;
    left: -29px;
}

/* ===== TEXT ===== */
.footer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d6d6d6;
}

/* ===== PURE VEG ===== */
.food-type{
    display: flex;
    gap: 25px;
}

/* VEG */
.pure-veg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 25px;
    font-weight: 600;
    color: #caffd8;
}

.veg-dot {
    width: 14px;
    height: 14px;
    background: #1aff6b;
    border-radius: 4px;
    box-shadow: 0 0 12px #1aff6b;
}

/* NON-VEG */
.pure-nonveg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 25px;
    font-weight: 600;
    color: #ffd6d6;
}

.nonveg-dot {
    width: 14px;
    height: 14px;
    background: #ff2a2a;
    border-radius: 4px;
    box-shadow: 0 0 12px #ff2a2a;
}


/* ===== HEADINGS ===== */
.footer h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 65px;
    position: relative;
    color: #ffffff;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 55px;
    height: 3px;
    background: linear-gradient(to right, #7cbf8e, #b8f0c6);
    border-radius: 10px;
}
.footer-col h3{
    margin-top: 30px;  
}
/* ===== LISTS ===== */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 16px;
}

.footer ul li a {
    line-height: 1.1;
    letter-spacing: 0.4px;
    color: #d0d0d0;
}

.footer ul li::before {
    content: "›";
    margin-right: 10px;
    color: #7cbf8e;
}

.footer ul li:hover {
    color: #b8f0c6;
    transform: translateX(6px);
}
.useful-links {
    padding-left: 0;
    margin-left: -40px;   
}

.footer-col h4:hover {
    color: #b8f0c6;
    transition: 0.3s ease;
}


.footer-col h4:hover i {
    transform: scale(1.15);
    color: #b8f0c6;
    transition: 0.3s ease;
}

.footer-col p:hover {
    color: #ffffff;
    transform: translateX(4px);
    transition: 0.3s ease;
}

.footer-col ul li a {
    transition: all 0.3s ease;
}

.footer-col ul li:hover a {
    color: #b8f0c6;
    padding-left: 6px;
}

.footer-col ul li::before {
    transition: 0.3s ease;
}

.footer-col ul li:hover::before {
    color: #b8f0c6;
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .useful-links {
        margin-left: 0;        
        padding-left: 0;
        text-align: left;   
    }
 
}
/* ===== CONTACT ===== */
.footer .contact span {
    display: block;
    margin-bottom: 12px;
    color: #d0d0d0;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: #7cbf8e;
    color: #000;
    transform: translateY(-6px);
}


/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    display: flex;
    justify-content: space-between; /* left text + right links */
    align-items: center;
    padding: 10px 5%;
    font-size: 14px;
   color: #cfcfcf;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
     top: 10px;  
    
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .footer-botom-links {
    display: flex;
    gap: 20px; 
}

.footer-bottom .footer-botom-links a {
    text-decoration: none;
    color: #cfcfcf;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-bottom .footer-botom-links a:hover {
   color: #cfcfcf;
    text-decoration: underline;
}
/* ===== FOOTER BOTTOM MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 15px 10px;
    }

    .footer-bottom .footer-botom-links {
        flex-direction: column;
        gap: 8px;
    }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer h3::after {
        left: 10%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}
/* for standard cotage */
/* Container jo extra part hide karel */
.carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;

    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 10%, rgba(255,255,255,0.7) 90%, rgba(255,255,255,1) 100%);
}

/* Images chi line */
.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Navin animation properties */
    animation: slideAndScale 25s linear infinite;
}

/* Hover effect */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Image styling */
.carousel-track img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.carousel-track img:hover {
    transform: scale(1.05) translateY(-5px);
    cursor: pointer;
}


/* ===== NAVIN ANIMATION KEYFRAMES (Slide and Scale) ===== */
@keyframes slideAndScale {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-25%) scale(1.02); 
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
}


/* ===== GALLERY FILTER FIX ===== */

/* HIDE ALL IMAGES BY DEFAULT */
.gallery-item {
    display: none;
    animation: fadeSlide 0.6s ease;
}

/* SHOW ACTIVE IMAGES */
.gallery-item.show {
    display: block;
}

/* SWAP ANIMATION */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
 
/* Default: Desktop view (show) */
.whatsapp-btn {
    position: fixed;      
    bottom: 20px;         
    left: 20px;           
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 2s infinite ease-in-out;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Hide on Mobile */
@media (max-width: 768px) {
    .whatsapp-btn {
        display: none;
    }
}
