/* CSS Variables for Color Palette */
:root {
    --deep-pine-green: #2F4F4F;
    --moss-green: #8FBC8F;
    --warm-off-white: #FAF9F6;
    --earth-brown: #8B4513;
    --earth-tan: #D2B48C;
    --text-dark: #333;
    --text-light: #666;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-off-white);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-pine-green);
}

a {
    text-decoration: none;
    color: inherit;
}

/*logo*/

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: #F3F4F2;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}


/* Navbar - Glassmorphism */
/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-pine-green);
}

.logo-img {
    height: 90px;
}

/* LINKS */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--deep-pine-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--moss-green);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--deep-pine-green);
}

/* MOBILE */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        display: none;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }
}


/* Hero Section - Full Width */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--warm-off-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/gallery/mountains.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}


.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 79, 79, 0.4);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--warm-off-white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--moss-green);
    color: var(--warm-off-white);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--deep-pine-green);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stay-options p {
    text-align: justify;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stay-options p {
        text-align: left;
    }
}



.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Stay Section */
.stay-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background: var(--warm-off-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.room-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Experiences Section with Parallax */
.parallax {
    background-attachment: fixed;
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--warm-off-white);
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 79, 79, 0.7);
    z-index: -1;
}

.parallax .container {
    position: relative;
    z-index: 1;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.experience-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
}

.experience-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.experience-item:hover img {
    transform: scale(1.1);
}

.experience-item h3 {
    margin-bottom: 1rem;
    color: var(--warm-off-white);
}

.experience-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Food Section */
.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.food-gallery img,
.food-gallery video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.food-gallery img:hover {
    transform: scale(1.05);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}


/* About Section */
/* SAME GRID LAYOUT AS about-content */
.about-content1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* VIDEO STYLING — MATCHES IMAGE STYLE */
.about-content1 video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* TEXT — SAME AS about-content */
.about-content1 .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.about-video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}



/* MOBILE FIX — STACK LIKE about-content */
@media (max-width: 768px) {

    .about-content,
    .about-content1 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Gallery Section */
.gallery-section {
    background: var(--deep-pine-green);
    padding: 6rem 0;
}

.cinematic-gallery {
    column-count: 3;
    column-gap: 1.2rem;
}

@media (max-width: 992px) {
    .cinematic-gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .cinematic-gallery {
        column-count: 1;
    }
}

.cinematic-gallery img {
    width: 100%;
    margin-bottom: 1.2rem;
    border-radius: 16px;
    break-inside: avoid;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    animation: fadeUp 1s ease forwards;
    transition: transform 0.6s ease;
}

.cinematic-gallery img:hover {
    transform: scale(1.04);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location iframe {
    width: 100%;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-details h3,
.location h3 {
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--deep-pine-green);
    color: var(--warm-off-white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links li {
        margin-left: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .stay-options,
    .experiences-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}


.contact-section {
    background: #f8faf9;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-text {
    margin-bottom: 1rem;
    color: #555;
}

.map-wrapper iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 12px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 0.8rem;
    color: #444;
}

.contact-list a {
    color: #2c7a7b;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-list .address {
    margin-top: 1rem;
    line-height: 1.6;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/*Social*/

.social-media {
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 8px;
    border-radius: 50%;
    font-size: 1.15rem;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Facebook */
.social-icon.fb {
    background: #1877f2;
}

.social-icon.fb i {
    color: #ffffff;
}

/* Instagram */
.social-icon.ig {
    background: radial-gradient(circle at 30% 30%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%);
}

.social-icon.ig i {
    color: #ffffff;
}

/* Hover effect */
.social-icon:hover {
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;

    width: 56px;
    height: 56px;

    background-color: #25d366;
    color: #ffffff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    line-height: 1;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

    z-index: 99999;
    /* 🔑 THIS IS CRITICAL */
}

.whatsapp-float i {
    color: #ffffff;
    line-height: 1;
}

.stay-cta {
    text-align: center;
    margin-top: 40px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Mobile safety */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }
}

/* ===== CINEMATIC LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 13, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.96);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2.5rem;
    color: #F3F4F2;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

/* Prevent background scroll */
body.lightbox-open {
    overflow: hidden;
}

/* Gallery fade transition */
.cinematic-gallery {
    transition: opacity 0.6s ease;
}

.cinematic-gallery.fade-out {
    opacity: 0;
}