/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body {
    overflow-x: hidden !important;
}
.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;                     
}

.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; 
    }

    .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: 80px;  
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 95%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Hero Content - Direct keyframes animation */
.hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    animation: fadeSlideUp 0.8s ease-out forwards;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 15px;
    animation: fadeUp 0.7s ease-out 0.1s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    animation: fadeUp 0.7s ease-out 0.3s forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
}
/* gallery content */

.amenities-gallery {
    padding: 80px 5%;
    background: linear-gradient(120deg, #fdf6e3, #eef7f1);
    text-align: center;
    margin-top: -50px;
}

/*HEADER */
.gallery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
    margin-top: -65px; 
}

/* TITLE */
.gallery-header h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;

    background: linear-gradient(90deg, #1b5e20, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gallery-header h1 {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease;
}

.gallery-header.show h1 {
    opacity: 1;
    transform: translateY(0);
}

/*NAV TABS*/
.amenities-nav {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 5000;
}

.amenities-nav li {
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #2f4f2f;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

/* ===== DROPDOWN STYLES - FIXED ===== */
.dropdown-toggle {
    position: relative;
    padding-right: 35px !important;
    cursor: pointer;
}

/* Dropdown Arrow */
/* ===== DROPDOWN ===== */

.dropdown-toggle {
    position: relative;
    user-select: none;
}

/* clickable area */
.dropdown-toggle span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* arrow animation */
.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active i {
    transform: rotate(180deg);
}

/* menu */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;

    min-width: 180px;

    background: #fff;
    border-radius: 12px;

    padding: 8px 0;
    margin: 0;

    list-style: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    display: none;

    z-index: 99999;
}

/* show menu */
.dropdown-toggle.active .dropdown-menu {
    display: block;
}

/* menu items */
.dropdown-menu li {
    padding: 12px 18px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
    background: transparent;
    color: #2f4f2f;
    font-size: 14px;
}

/* hover */
.dropdown-menu li:hover {
    background: linear-gradient(90deg, #66bb6a, #2e7d32);
    color: #fff;
}
/* Active and Hover states for tabs */
.amenities-nav li:hover,
.amenities-nav li.active {
    background: linear-gradient(90deg, #66bb6a, #2e7d32);
    color: #fff;
    transform: translateY(-4px);
}


/*GALLERY CONTAINER*/

.gallery-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/*GALLERY ITEMS*/

.gallery-item {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    cursor: pointer;
    animation: slideFade 0.6s ease;
}

.gallery-item.show {
    display: block;
}
.gallery-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
     pointer-events: none;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* HOVER */
.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.08);
}

/* ===============================
ANIMATION (MOTION / SWIPE)
=============================== */
@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ===============================
RESPONSIVE
=============================== */
@media (max-width: 768px) {
    .gallery-header {
        gap: 20px;
    }

    .gallery-header h1 {
        font-size: 34px;
    }

    .gallery-item img {
        height: 220px;
    }
}


/* SECTION */
.amenities-section {
    padding: 80px 6%;
    background: #ffffff;
}

/* TITLE */
.amenities-title {
    text-align: center;
    font-size: 48px;
    font-family: Georgia, serif;
    margin-bottom: 60px;
    color: #333;
}

/* GRID */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD */
.amenity-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

/* IMAGE */
.amenity-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* OVERLAY */
.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.55);
}

.amenity-overlay h3 {
    color: #fff;
    font-size: 22px;
    font-family: Georgia, serif;
    text-align: center;
}

/* HOVER EFFECT */
.amenity-card:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .amenities-title {
        font-size: 36px;
    }

    .amenity-card img {
        height: 220px;
    }
}

/* 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;
    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;
    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;
    }
}
/* 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;
    }
}
/* FORCE ANIMATION - Working Solution */
.hero-content h1 {
    animation: slideUp 0.8s ease forwards !important;
}

.hero-content p {
    animation: slideUp 0.8s ease 0.3s forwards !important;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}