/* --- GLOBAL STYLES (Earthy & Premium Theme) --- */
:root {
    --color-background-main: #f8f4e3;
    --color-background-section: #e6e0d3;
    --color-text-main: #3d342f;
    --color-text-light: #fff;
    --color-accent: #b48e58;
    --color-border: #d4d0c3;
    --color-footer: #e8ded2;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-background-main);
    transition: background-color 0.4s ease;
    /* Base font size badhaya gaya hai */
    font-size: 17px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--color-text-main);
}

.bg-light {
    background-color: var(--color-background-section);
}

/* --- HEADER & NAVIGATION (Desktop) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 3rem;
    transition: background-color 0.4s ease, padding 0.4s ease;
    background-color: transparent;
    box-shadow: none;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo img {
    height: 130px;
    transition: height 0.4s ease;
}

.header.scrolled .logo img {
    height: 50px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.95rem; 
    transition: color 0.4s ease;
}

.header.scrolled .main-nav a {
    color: var(--color-text-main);
}

.main-nav a:hover {
    color: var(--color-accent);
}

.nav-button {
    border: 2px solid var(--color-text-light);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
}

.header.scrolled .nav-button {
    border-color: var(--color-text-main);
}

.header.scrolled .nav-button:hover {
    background-color: var(--color-text-main);
    color: var(--color-text-light);
}

/* Dropdown Menu */
.main-nav ul li.menu-has-children {
    position: relative;
}

.main-nav ul li.menu-has-children > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #3d342f;
    padding: 10px 0;
    min-width: 200px;
    z-index: 99;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.main-nav ul li.menu-has-children:hover > ul {
    display: block;
}

.main-nav ul li.menu-has-children ul li a {
    color: var(--color-text-light);
    padding: 10px 20px;
    display: block;
    font-weight: 400;
}

.main-nav ul li.menu-has-children ul li a:hover {
    background-color: #55483f;
    color: var(--color-accent);
    padding-left: 25px;
}

/* Fix for Dropdown Menu on Scroll */
.header.scrolled .main-nav ul li.menu-has-children ul {
    background-color: var(--color-background-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header.scrolled .main-nav ul li.menu-has-children ul li a {
    color: var(--color-text-main);
}

.header.scrolled .main-nav ul li.menu-has-children ul li a:hover {
    background-color: var(--color-border);
    color: var(--color-accent);
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-text-light);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    animation: fade-slider 24s infinite;
}

.slide:first-child { opacity: 1; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }

@keyframes fade-slider {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    25%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.8rem; 
    color: var(--color-text-light);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.6rem; 
    color: #f0f0f0;
    font-weight: 300;
}

/* --- GENERAL SECTIONS --- */
.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-text-light);
    background-size: cover;
    background-position: center center;
}

.intro-section,
.experiences-section,
.visit-time-section,
.faq-section,
.contact-section,
.gallery-page-section,
.accommodations-section,
.weather-section,
.detailed-content {
    padding: 6rem 2rem;
}

.detailed-content .container { max-width: 900px; margin: 0 auto; }
.detailed-content h2 { 
    text-align: center; 
    font-size: 3rem; 
}
.detailed-content h3 { 
    font-size: 2rem; 
    margin-top: 2.5rem; 
    margin-bottom: 1rem; 
    color: var(--color-text-main); 
}
.detailed-content p, .detailed-content ul { 
    font-size: 1.25rem;
    line-height: 1.8; 
    margin-bottom: 1.5rem; 
}
.detailed-content ul { list-style: disc; padding-left: 25px; }
.detailed-content ul li { margin-bottom: 0.75rem; }
.featured-image { width: 100%; border-radius: 10px; margin: 2rem 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.divider { border: 0; height: 1px; background-color: #eee; margin: 3rem 0; }
.detailed-content .cta-button { display: table; margin: 3rem auto 0 auto; }

/* --- SECTIONS SPECIFIC TO PAGES --- */
.intro-section { background-color: var(--color-background-section); text-align: center; }
.intro-container { max-width: 800px; margin: 0 auto; }
.intro-section h2 { font-size: 3rem; margin-bottom: 2rem; }
.intro-section .intro-text { font-size: 1.4rem; 
color: #555; margin-bottom: 2.5rem; }
.intro-section p { font-size: 1.15rem; color: #666; }

.full-width-image { width: 100%; line-height: 0; overflow: hidden; }
.full-width-image img { width: 100%; height: 500px; object-fit: cover; display: block; }

.experiences-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.experiences-container h2 { font-size: 3rem; margin-bottom: 3rem; }
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.experience-card { background-color: var(--color-background-main); border-radius: 8px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); overflow: hidden; text-align: left; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.experience-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.experience-card img { width: 100%; height: 220px; object-fit: cover; }
.card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-content h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.card-content p { font-size: 1.05rem; color: #666; margin-bottom: 1.5rem; flex-grow: 1; }
.cta-button-outline { display: inline-block; padding: 12px 30px; border: 2px solid var(--color-text-main); color: var(--color-text-main); text-decoration: none; font-weight: 600; border-radius: 50px; transition: background-color 0.3s ease, color 0.3s ease; }
.cta-button-outline:hover { background-color: var(--color-text-main); color: var(--color-text-light); }

.visit-time-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.visit-time-container h2 { font-size: 3rem; margin-bottom: 3rem; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.time-card { background-color: var(--color-background-main); padding: 2rem; border-radius: 8px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-top: 4px solid var(--color-accent); }
.time-card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--color-text-main); }
.time-card p { font-size: 1.1rem; color: #666; }

.cta-section { 
    position: relative; 
    padding: 8rem 2rem; 
    text-align: center; 
    color: var(--color-text-light); 
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed;
}
.cta-section h2 { 
    font-size: 3.8rem; 
    color: var(--color-text-light); 
    margin-bottom: 1.5rem; 
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6); 
}
.cta-section p { 
    font-size: 1.4rem; 
    max-width: 600px; 
    margin: 0 auto 2.5rem auto; 
}
.cta-button { 
    display: inline-block; 
    padding: 15px 35px; 
    background-color: var(--color-text-light); 
    color: var(--color-text-main); 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: bold; 
    font-size: 1.1rem; 
    transition: background-color 0.3s ease, transform 0.3s ease; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
}
.cta-button:hover { 
    background-color: var(--color-accent); 
    color: var(--color-text-light); 
    transform: translateY(-3px); 
}

.gallery-page-section { padding: 6rem 2rem; }
.gallery-grid-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 1.5rem; }
.gallery-item { overflow: hidden; border-radius: 8px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item img:hover { transform: scale(1.05); }

.accommodations-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.accommodations-container h2 { font-size: 3rem; margin-bottom: 1rem; }
.accommodations-container .intro-p { font-size: 1.3rem; color: #666; max-width: 800px; margin: 0 auto 3rem auto; }
.accommodations-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.accommodation-card { background-color: var(--color-background-main); border-radius: 8px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); overflow: hidden; text-align: left; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; max-width: 450px; flex-basis: 450px; }
.accommodation-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.accommodation-card img { width: 100%; height: 300px; object-fit: cover; }
.accommodation-card .card-content { padding: 2rem; }
.accommodation-card .card-content h3 { font-size: 1.8rem; }

.contact-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 3rem; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 300px; }
.contact-info h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--color-text-main); }
.contact-info p { font-size: 1.15rem; line-height: 1.8; color: #555; margin-bottom: 2rem; }
.contact-form-wrapper { flex: 1.5; background: var(--color-background-main); padding: 2.5rem 3rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.contact-form-wrapper h3 { text-align: center; font-size: 2.2rem; margin-bottom: 2rem; }
.contact-form .form-group { margin-bottom: 1.5rem; text-align: left; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--color-text-main); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px; border: 1px solid var(--color-border); border-radius: 6px; font-size: 1.05rem; font-family: 'Montserrat', sans-serif; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(180, 142, 88, 0.2); outline: none; }

.accordion-container { max-width: 900px; margin: 0 auto; margin-top: 3rem; }
.accordion-item { border: 1px solid var(--color-border); border-radius: 8px; margin-bottom: 1rem; overflow: hidden; }
.accordion-header { width: 100%; text-align: left; padding: 1.5rem 2rem; background-color: #f0f0e8; font-size: 1.25rem; 
font-weight: 600; color: var(--color-text-main); cursor: pointer; border: none; outline: none; transition: background-color 0.3s ease; display: flex; justify-content: space-between; align-items: center; }
.accordion-header::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); transition: transform 0.3s ease; }
.accordion-header.active { background-color: var(--color-background-main); color: var(--color-accent); }
.accordion-header.active::after { content: '-'; transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 2rem; background-color: var(--color-background-main); }
.accordion-content p { padding-bottom: 2rem; }

.weather-container { max-width: 500px; margin: 0 auto; background-color: transparent; border-radius: 10px; padding: 1rem; box-shadow: none; }
#weather-widget { display: flex; justify-content: center; align-items: flex-start; gap: 1.5rem; color: var(--color-text-main); }
.current-weather { display: flex; align-items: center; gap: 1rem; }
.weather-main-details { display: flex; align-items: center; gap: 0.5rem; }
.weather-main-details img { width: 50px; height: 50px; }
.weather-info { text-align: left; }
.weather-info h3 { font-size: 1.8rem; color: var(--color-text-main); margin: 0; }
.weather-info p { font-size: 0.9rem; margin: 0; color: #7c6c5e; }
.forecast { display: flex; gap: 0.8rem; border-left: none; padding-left: 1.5rem; }
.forecast-day { display: flex; flex-direction: column; align-items: center; padding: 0.8rem; border-radius: 8px; background-color: transparent; box-shadow: none; }
.forecast-day h4 { font-size: 0.9rem; color: var(--color-text-main); margin-bottom: 0.3rem; }
.forecast-day img { width: 30px; height: 30px; }
.forecast-day .temp { font-size: 0.9rem; font-weight: 600; color: var(--color-text-main); }
.forecast-day .low-temp { font-size: 0.7rem; color: #7c6c5e; }

/* --- SUN ROTATION ANIMATION --- */
@keyframes sun-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- APPLY ANIMATION TO ALL SUN ICONS --- */
#weather-widget .weather-main-details img,
#weather-widget .forecast-day img {
    animation: sun-rotate 15s linear infinite;
    transform-origin: center center;
}

/* --- FOOTER STYLES --- */
.footer {
    background-color: var(--color-footer);
    color: var(--color-text-main);
    padding: 5rem 2rem 0 2rem;
}

.footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem; padding-bottom: 3rem; }
.footer-col { flex: 1; min-width: 350px; }
.footer-col.about-col { flex: 1.5; }
.footer-logo { height: 90px; margin-bottom: 1rem; }
.footer-col h4 { color: var(--color-text-main); font-size: 1.1rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.5rem; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background-color: var(--color-accent); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul a, .footer-col ul p { color: var(--color-text-main); text-decoration: none; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col ul a:hover { color: var(--color-accent); padding-left: 5px; }
.social-links a { display: inline-block; height: 40px; width: 40px; background-color: rgba(61, 52, 47, 0.1); color: var(--color-text-main); margin-right: 10px; text-align: center; line-height: 40px; border-radius: 50%; transition: background-color 0.3s ease, color 0.3s ease; }
.social-links a:hover { background-color: var(--color-accent); color: var(--color-text-light); }
.footer-bottom { border-top: 1px solid var(--color-border); padding: 1.5rem 0; text-align: center; font-size: 0.9rem; color: var(--color-text-main); }

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #e7b85a; 
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 30px;
    line-height: 1;
    transform: translateY(-2px);
    color: white;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .header-container, .footer-container { padding: 0 1.5rem; }
    .intro-section, .experiences-section, .visit-time-section, .faq-section, .contact-section, .weather-section, .detailed-content { padding: 4rem 1.5rem; }
    .full-width-image img { height: 300px; }
    .hero-section { height: 70vh; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1.2rem; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-col { min-width: auto; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    body.menu-active { overflow: hidden; }
    
    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background-color: #fdfbf7;
        padding: 4rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding: 0; width: 100%; }
    .main-nav ul li { margin: 0; width: 100%; border-bottom: 1px solid rgba(0,0,0,0.1); }
    .main-nav ul li:last-child { border-bottom: none; }
    .main-nav ul li a { color: #4b3a24; font-size: 0.9rem; padding: 0.7rem 0; text-align: left; }
    
    /* FIX FOR MOBILE DROPDOWN MENU */
    .header .main-nav .menu-has-children ul {
        background-color: var(--color-background-main);
        box-shadow: none;
        padding: 0;
        position: static;
        display: block;
    }
    .main-nav ul li.menu-has-children ul li a {
        color: var(--color-text-main) !important;
        padding-left: 1.5rem;
    }
    .main-nav ul li.menu-has-children ul li a:hover {
        background-color: var(--color-border);
        color: var(--color-accent);
        padding-left: 2rem;
    }

    .nav-button { display: inline-block; border: 2px solid var(--color-accent); padding: 0.7rem 1.5rem; border-radius: 50px; color: #4b3a24; margin-top: 2rem; }
    .nav-button:hover { background-color: var(--color-accent); color: var(--color-text-light); }
    
    .hamburger-menu {
        display: flex;
        z-index: 1001;
        cursor: pointer;
    }
    
    .main-nav.active + .hamburger-menu {
        display: none;
    }
    
    .hamburger-menu .bar {
        height: 3px;
        width: 30px;
        background-color: var(--color-text-main);
        border-radius: 5px;
        transition: all 0.3s ease;
        margin: 4px 0;
    }
    
    .close-btn {
        display: none;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
        color: #4b3a24;
        cursor: pointer;
        z-index: 1001;
    }
    .main-nav.active .close-btn {
        display: block;
    }
}
/* Ensure hamburger menu and close button are not visible on desktop */
@media (min-width: 993px) {
    .hamburger-menu, .close-btn {
        display: none;
    }
}

/* Final Fix for WhatsApp Icon */
.whatsapp-float {
    color: white !important;
    background-color: #e7b85a !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
    box-shadow: 2px 2px 3px #999 !important;
    z-index: 1000 !important;
    width: 60px !important;
    height: 60px !important;
}

.whatsapp-float i {
    color: white !important;
    font-size: 30px !important;
    line-height: 1 !important;
}

/* Images and Gallery Layout */
.mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 2.5rem 0;
}

.mini-gallery img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}
.gallery-item { overflow: hidden; border-radius: 8px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item img:hover { transform: scale(1.05); }

//* --- PACKAGE DETAILS LAYOUT --- */
.package-details-summary {
    background-color: var(--color-background-section);
    border-radius: 10px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.package-price {
    margin-bottom: 3rem;
}

.package-price h3 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.package-price p {
    font-size: 1.5rem;
    font-weight: 600;
}

.includes-not-includes-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 3rem;
    justify-content: center;
}

.includes-section, .not-includes-section {
    flex-basis: 400px;
    flex-grow: 1;
}

.includes-section h3, .not-includes-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.includes-section ul, .not-includes-section ul {
    list-style: none;
    padding: 0;
}

.includes-section li, .not-includes-section li {
    font-size: 1.1rem; 
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.includes-section li:last-child, .not-includes-section li:last-child {
    border-bottom: none;
}

.includes-section li::before, .not-includes-section li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 15px;
    font-size: 1.2rem;
}

.includes-section li::before {
    content: "\f00c";
    color: #28a745;
}

.not-includes-section li::before {
    content: "\f00d";
    color: #dc3545;
}

/* Mobile Responsiveness for includes/not-includes */
@media (max-width: 768px) {
    .package-details-summary {
        padding: 2rem;
    }
    .includes-not-includes-container {
        flex-direction: column; 
        gap: 2rem;
    }
    .mini-gallery img {
        height: 250px;
    }
}
/* WhatsApp icon ko chhota-bada (animate) karne ke liye code */
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite ease-in-out;
}
/* --- THE CAMP PAGE SPECIFIC STYLES --- */
.accommodations-section .accommodations-container {
    max-width: 1100px;
}

.accommodations-section .accommodation-card.full-width {
    flex-basis: 100%;
}

.accommodations-section .intro-p {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* --- LIGHTBOX GALLERY STYLES --- */
.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
}

.gallery-container .gallery-item.main-image {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-container .gallery-item.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-container .gallery-thumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.gallery-container .gallery-thumbs img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.gallery-container .gallery-thumbs img:hover {
    border-color: var(--color-accent);
}

/* --- Modal/Lightbox CSS --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    animation-name: zoom;
    animation-duration: 0.6s;
    text-align: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white; 
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

@media only screen and (max-width: 700px){
    .modal-content-container {
        width: 100%;
    }
    .prev, .next {
        font-size: 14px;
        padding: 8px;
    }
}
/* Gallery-related styles for positioning the arrows */
.main-image-wrapper {
    position: relative; 
    max-width: 100%;
    margin-bottom: 10px;
}

.main-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; 
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 5px;
}

.gallery-arrow.prev {
    left: 10px;
}

.gallery-arrow.next {
    right: 10px;
}

/* Optional: Style to highlight the active thumbnail */
.gallery-thumbs img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery-thumbs img.active {
    border-color: #f7991e; 
}

/* Gallery images styling for consistent sizing */
.gallery-container .main-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.66%; 
    overflow: hidden;
}

.gallery-container .main-image-wrapper .main-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.gallery-container .gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.gallery-container .gallery-thumbs img {
    width: 80px; 
    height: 80px; 
    object-fit: cover; 
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.gallery-container .gallery-thumbs img:hover,
.gallery-container .gallery-thumbs img.active {
    transform: scale(1.05);
    border-color: #d1a35f; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Ensure the modal image is also consistent */
.modal-content-container .modal-content {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}
/* Animation initial state */
.animated-content {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Animation final state */
.animated-content.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Styling for the main gallery grid */
.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Styling for each gallery image */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    display: block;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Ensure the modal image is also consistent */
.modal-content-container .modal-content {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}
/* --- Lightbox/Modal Styling --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 100; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); 
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-content-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
}

/* Close Button */
.modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 101;
}

.modal .close:hover,
.modal .close:focus {
    color: #d1a35f;
    text-decoration: none;
    cursor: pointer;
}

/* Next & Previous arrows */
.modal .prev,
.modal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.modal .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.modal .prev:hover,
.modal .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/* --- Parallax Effect for CTA Section --- */
.cta-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* --- FONT IMPORT FIX --- */
/* Added Lora and Montserrat to Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Montserrat:wght@400;600&display=swap');

/* --- HEADING FONT FIX --- */
/* Changed heading font to Playfair Display as requested */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}
/* ------------------------------------------------------------------- */
/* 7. RESPONSIVE MOBILE FIXES (Applied below 992px) */
/* ------------------------------------------------------------------- */

/* Image and Global Fluidity */
img {
    max-width: 100%;
    height: auto;
    display: block; 
}

/* Desktop only: Ensure hidden mobile elements stay hidden */
@media (min-width: 993px) {
    .hamburger-menu, .close-btn {
        display: none;
    }
}

/* --- 992px BREAKPOINT (Tablets and Larger Phones) --- */
@media (max-width: 992px) {
    /* 1. Header/Logo Compactness (मेन्यू पट्टी और लोगो को छोटा करना) */
    .header {
        padding: 0.7rem 1.5rem; /* हेडर पैडिंग कम करें */
    }
    .header.scrolled {
        padding: 0.5rem 1.5rem;
    }
    .logo img {
        height: 40px; /* लोगो की ऊँचाई 130px से घटाकर 40px */
        max-width: 200px;
    }

    /* 2. Global Padding/Hero Adjustments */
    .header-container, .footer-container { 
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .intro-section, .experiences-section, .visit-time-section, .faq-section, .contact-section, .weather-section, .detailed-content { 
        padding: 4rem 1.5rem; 
    }
    .full-width-image img { 
        height: 300px; /* ऊँचाई कम करें */
    }
    .hero-section { 
        height: 70vh; /* ऊँचाई कम करें */
    }
    .hero-content h1 { 
        font-size: 3rem; 
    }
    .hero-content p { 
        font-size: 1.2rem; 
    }
    
    /* 3. Grid Stacking (Columns to single column) */
    .footer-container { 
        flex-direction: column; 
        text-align: center; 
    }
    .footer-col { 
        min-width: auto; 
        flex: none; 
        width: 100%;
        margin-bottom: 25px;
    }
    .footer-col h4::after { 
        left: 50%; 
        transform: translateX(-50%); 
    }

    .contact-container, .accommodations-grid, .includes-not-includes-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .accommodations-grid { align-items: center; }
    .accommodation-card { max-width: 100%; flex-basis: auto; }
}

/* --- 576px BREAKPOINT (Smaller Phones) --- */
@media (max-width: 576px) {
    /* Smaller Padding/Margins */
    .intro-section, .experiences-section, .visit-time-section, .faq-section, .contact-section, .weather-section, .detailed-content { 
        padding: 3rem 1rem; 
    }
    
    /* Smaller Text/Title Sizes */
    .hero-content h1, .intro-section h2, .experiences-container h2, .visit-time-container h2, .detailed-content h2 {
        font-size: 2rem; 
        line-height: 1.2;
    }
    .hero-content p { font-size: 1rem; }
    .cta-section h2 { font-size: 2.2rem; }
    .cta-section p { font-size: 1rem; }
    .cta-button { font-size: 1rem; padding: 12px 25px; }
    
    /* Single Column Grids for gallery */
    .gallery-grid-container { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    .gallery-item img { 
        height: 200px; 
    }

    /* WhatsApp Float Positioning */
    .whatsapp-float {
        width: 50px !important; 
        height: 50px !important;
        bottom: 20px; 
        right: 20px;
    }
    .whatsapp-float i { 
        font-size: 24px !important; 
    }
    
    /* Modal sizing on small screens */
    .modal-content-container {
        width: 100%;
    }
    .modal .prev, .modal .next {
        font-size: 14px;
        padding: 8px;
    }
}
/* --- SCROLL TO TOP BUTTON STYLES (FINAL FIX FOR CENTERING & OVERLAP) --- */
#scroll-to-top {
    display: none; 
    position: fixed;
    /* 🔴 डेस्कटॉप पर WhatsApp आइकन से ऊपर रखने के लिए bottom 140px पर सेट किया गया है */
    bottom: 140px; 
    right: 40px;
    z-index: 999;
    width: 55px; 
    height: 55px;
    background-color: var(--color-accent);
    color: var(--color-text-light); 
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    
    /* आइकॉन को बीच में लाने के लिए मुख्य सुधार (Flexbox) */
    display: flex; /* Flexbox लागू करें */
    justify-content: center; /* हॉरिजॉन्टली केंद्र में */
    align-items: center; /* वर्टिकली केंद्र में */
    text-decoration: none;
}

#scroll-to-top i {
    /* आइकॉन के साइज़ को ठीक से सेट करें */
    font-size: 20px; 
    /* Font Awesome के लिए font-weight आवश्यक है */
    font-weight: 900; 
    line-height: 1; 
    margin: 0; 
    padding: 0;
}

#scroll-to-top:hover {
    background-color: #a37c4e;
    transform: translateY(-3px);
}

/* --- MOBILE ADJUSTMENT (576px) --- */
@media (max-width: 576px) {
    #scroll-to-top {
        /* मोबाइल पर WhatsApp से ऊपर रखने के लिए bottom 100px पर सेट किया गया है */
        bottom: 100px; 
        right: 20px;
        width: 45px;
        height: 45px;
    }
    #scroll-to-top i {
        font-size: 18px; 
    }
}
.your-heading-selector {
    /* कंटेनर की चौड़ाई को सेट करें, यदि आवश्यक हो */
    max-width: 100%; 
    
    /* टेक्स्ट रैपिंग (Text Wrapping) */
    white-space: normal; /* यह सुनिश्चित करता है कि टेक्स्ट रैप हो */
    overflow-wrap: break-word; /* लंबे शब्दों को भी तोड़कर अगली लाइन पर लाता है */
}