        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --lake-teal: #5A9B9D;
            --soft-green: #7FA882;
            --sand-beige: #E8DCC9;
            --sunset-gold: #D4A574;
            --off-white: #F9F7F4;
            --warm-white: #FDFBF7;
            --text-dark: #2C3E3B;
            --muted-teal: #A8C9CA;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif; /* Professional & Elegant */
            font-weight: 300; /* Makes text slightly thinner/lighter for a premium feel */
            color: var(--text-dark);
            line-height: 1.8; /* Increases spacing slightly for better readability */
            overflow-x: hidden;
            background: var(--warm-white);
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Animated Background */
        .ambient-bg {
            position: fixed;
            inset: 0;
            background: linear-gradient(135deg, #f0f8f7 0%, #fdfbf7 45%, #f5ece0 100%);
            z-index: -2;
        }

        .water-particles {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(90,155,157,0.3), transparent);
            border-radius: 50%;
            animation: float-particle 25s infinite ease-in-out;
        }

        .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 4s; }
        .particle:nth-child(3) { left: 45%; top: 15%; animation-delay: 8s; }
        .particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 12s; }
        .particle:nth-child(5) { left: 80%; top: 35%; animation-delay: 6s; }
        .particle:nth-child(6) { left: 15%; top: 80%; animation-delay: 10s; }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(253, 251, 247, 0.92);
            backdrop-filter: blur(16px);
            padding: 1.2rem 6%;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(90, 155, 157, 0.08);
        }

        nav.scrolled {
            padding: 0.8rem 6%;
            background: rgba(253, 251, 247, 0.97);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1500px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--lake-teal);
            letter-spacing: 1.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: var(--sunset-gold);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover {
            color: var(--lake-teal);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--lake-teal);
        }

        /* Hero Section */
        /* Hero Section */
.hero {
    height: 100vh;
    width: 100%;       /* Force full width */
    max-width: 100%;   /* Override the global 1500px limit */
    padding: 0;        /* Remove default section padding so it hits the edges */
    margin: 0;         /* Remove centering margins */
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--warm-white);
    overflow: hidden;
}

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(44, 62, 59, 0.45), rgba(90, 155, 157, 0.35)),
                        url('./assets/BG.webp') center/cover;
            background-attachment: fixed;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            /* background: radial-gradient(circle at bottom, transparent 0%, rgba(44, 62, 59, 0.2) 100%); */
            z-index: 2;
        }


        .ripple-effect {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 140px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23F9F7F4" fill-opacity="0.6" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,133.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            z-index: 3;
            opacity: 0.9;
        }

        .hero-content {
            position: relative;
            z-index: 4;
            max-width: 900px;
            padding: 0 2rem;
            animation: heroFadeIn 1.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.5rem 1.3rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 1.8rem;
            font-size: 0.88rem;
            letter-spacing: 0.5px;
        }

        .hero-badge i {
            color: var(--sunset-gold);
        }

        .hero h1 {
            font-size: 4.2rem;
            margin-bottom: 1.3rem;
            line-height: 1.15;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            letter-spacing: 1px;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.8rem;
            font-weight: 300;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1.3rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.1rem 2.8rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--sunset-gold), #C99A6E);
            color: var(--warm-white);
            box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(212, 165, 116, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: var(--warm-white);
            border: 2px solid rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.95);
            color: var(--lake-teal);
            transform: translateY(-4px);
        }

        /* Sections */
        section {
            padding: 2rem 6%;
            max-width: 1500px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: var(--lake-teal);
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 4rem;
            font-size: 1.05rem;
            color: #6B7C78;
            line-height: 1.8;
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text p {
            font-size: 1.08rem;
            margin-bottom: 1.6rem;
            line-height: 1.85;
            color: var(--text-dark);
        }

        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .feature-tag {
            padding: 0.5rem 1.1rem;
            border-radius: 999px;
            background: rgba(90, 155, 157, 0.1);
            border: 1px solid rgba(90, 155, 157, 0.25);
            font-size: 0.88rem;
            color: var(--lake-teal);
            font-weight: 500;
        }

        .about-image-wrap {
            position: relative;
        }

        .about-image {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .about-image img {
            width: 100%;
            /* CHANGED: Removed fixed 500px height. 'auto' prevents distortion. */
            height: auto; 
            /* NEW: Forces a nice standard photo shape (4 units wide, 3 units tall) */
            aspect-ratio: 4/3; 
            object-fit: cover; /* Ensures it still fills the corners */
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            display: block; /* Removes tiny bottom gap */
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .about-floating-card {
            position: absolute;
            bottom: -25px;
            right: -25px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-radius: 20px;
            padding: 1.5rem 2rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
            animation: floatGentle 7s ease-in-out infinite;
        }

        .about-floating-card i {
            font-size: 2rem;
            color: var(--lake-teal);
            margin-bottom: 0.5rem;
        }

        .about-floating-card h4 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }

        .about-floating-card p {
            font-size: 0.85rem;
            color: #6B7C78;
        }

        /* Amenities */
        #amenities {
            background: linear-gradient(to bottom, var(--off-white), var(--warm-white));
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.5rem;
        }

        .amenity-card {
            background: var(--warm-white);
            padding: 2.5rem 2rem;
            border-radius: 22px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(90, 155, 157, 0.08);
            position: relative;
            overflow: hidden;
        }

        .amenity-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(90, 155, 157, 0.08), transparent 70%);
            opacity: 0;
            transition: opacity 0.45s ease;
        }

        .amenity-card:hover::before {
            opacity: 1;
        }

        .amenity-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
            border-color: rgba(90, 155, 157, 0.2);
        }

        .amenity-card i {
            font-size: 3rem;
            color: var(--lake-teal);
            margin-bottom: 1.3rem;
            animation: iconFloat 5s ease-in-out infinite;
        }

        .amenity-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.7rem;
            color: var(--text-dark);
        }

        .amenity-card p {
            font-size: 0.95rem;
            color: #6B7C78;
            line-height: 1.6;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 320px;
            cursor: pointer;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(44, 62, 59, 0.75), transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 2rem;
            color: var(--warm-white);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Location */
        #location {
            background: linear-gradient(to bottom, var(--warm-white), var(--off-white));
        }

        .location-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .map-wrapper {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            height: 450px;
            position: relative;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .map-wrapper:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 75px rgba(0, 0, 0, 0.2);
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .attractions {
            background: var(--warm-white);
            padding: 2.5rem;
            border-radius: 22px;
            box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
        }

        .attractions h3 {
            font-size: 1.8rem;
            color: var(--lake-teal);
            margin-bottom: 2rem;
        }

        .attraction-item {
            display: flex;
            align-items: start;
            gap: 1.2rem;
            margin-bottom: 1.8rem;
            padding-bottom: 1.8rem;
            border-bottom: 1px solid rgba(90, 155, 157, 0.12);
        }

        .attraction-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .attraction-item i {
            font-size: 1.8rem;
            color: var(--sunset-gold);
            margin-top: 0.2rem;
        }

        .attraction-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.4rem;
            color: var(--text-dark);
        }

        .attraction-item p {
            font-size: 0.92rem;
            color: #6B7C78;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .testimonial-card {
            background: linear-gradient(145deg, var(--warm-white), rgba(232, 220, 201, 0.2));
            padding: 2.5rem;
            border-radius: 22px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
            position: relative;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 25px;
            font-size: 8rem;
            color: rgba(90, 155, 157, 0.08);
            font-family: 'Cormorant Garamond', serif;
            line-height: 1;
        }

        .testimonial-stars {
            color: var(--sunset-gold);
            font-size: 1.15rem;
            margin-bottom: 1.3rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.02rem;
            color: var(--text-dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--lake-teal), var(--muted-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .author-info h5 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.85rem;
            color: #6B7C78;
        }

        /* Contact Section */
        #contact {
            background: linear-gradient(135deg, var(--lake-teal), var(--soft-green));
            color: var(--warm-white);
            padding: 2rem 6%;
            border-radius: 50px;
        }

        .contact-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-container .section-title {
            color: var(--warm-white);
        }

        .contact-container .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .form-group {
            margin-bottom: 1.8rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.3rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            color: var(--warm-white);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .btn-submit {
            background: var(--sunset-gold);
            color: var(--warm-white);
            width: 100%;
            padding: 1.2rem;
            font-size: 1.05rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
        }

        .btn-submit:hover:not(:disabled) {
            background: #C99A6E;
            transform: translateY(-3px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 2rem;
            padding: 1rem 2.2rem;
            background: #25D366;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            background: #1EBE57;
            transform: translateY(-3px);
            box-shadow: 0 18px 45px rgba(37, 211, 102, 0.4);
        }

        .form-status {
            margin-top: 1.5rem;
            padding: 1rem;
            border-radius: 12px;
            font-size: 0.95rem;
            display: none;
        }

        .form-status.success {
            background: rgba(76, 175, 80, 0.2);
            border: 1px solid rgba(76, 175, 80, 0.4);
            color: #E8F5E9;
        }

        .form-status.error {
            background: rgba(244, 67, 54, 0.2);
            border: 1px solid rgba(244, 67, 54, 0.4);
            color: #FFEBEE;
        }

        /* Footer */
        footer {
            background: linear-gradient(to bottom, rgba(44, 62, 59, 0.95), var(--text-dark));
            color: rgba(255, 255, 255, 0.9);
            padding: 3.5rem 6% 2rem;
            text-align: center;
        }

        #footer-design{
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
            color: var(--muted-teal);
        }

        .footer-info {
            margin: 1.5rem 0;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--warm-white);
            font-size: 1.2rem;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .social-links a:hover {
            background: var(--sunset-gold);
            border-color: var(--sunset-gold);
            transform: translateY(-5px);
        }

        .copyright {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.88rem;
            opacity: 0.8;
        }

        .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--lake-teal);
    letter-spacing: 1.5px;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    white-space: nowrap;
}

/* Responsive logo for mobile */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 38px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    .logo span {
        display: none; /* Hide text on very small screens, show only logo */
    }
    .about-image img {
        aspect-ratio: 16/9; /* Wider and shorter for mobile screens */
    }
}

/* Packages Section */
#packages {
    background: var(--warm-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.package-card {
    background: linear-gradient(145deg, #ffffff, rgba(249, 247, 244, 0.8));
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(90, 155, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--lake-teal), var(--soft-green));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(90, 155, 157, 0.3);
}

.package-card.featured {
    border: 2px solid var(--sunset-gold);
    background: linear-gradient(145deg, #ffffff, rgba(212, 165, 116, 0.05));
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--lake-teal), var(--soft-green));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-badge.featured-badge {
    background: linear-gradient(135deg, var(--sunset-gold), #C99A6E);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(90, 155, 157, 0.1), rgba(127, 168, 130, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.package-card:hover .package-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, rgba(90, 155, 157, 0.2), rgba(127, 168, 130, 0.2));
}

.package-icon i {
    font-size: 2.5rem;
    color: var(--lake-teal);
}

.package-card.featured .package-icon {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(201, 154, 110, 0.15));
}

.package-card.featured .package-icon i {
    color: var(--sunset-gold);
}

.package-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.package-description {
    font-size: 1rem;
    color: #6B7C78;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(90, 155, 157, 0.15);
    border-bottom: 1px solid rgba(90, 155, 157, 0.15);
}

.package-price .currency {
    font-size: 1rem;
    color: var(--lake-teal);
    font-weight: 600;
}

.package-price .amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
}

.package-card.featured .package-price .amount {
    color: var(--sunset-gold);
}

.package-price .period {
    font-size: 0.95rem;
    color: #6B7C78;
}

.package-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.package-features li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(90, 155, 157, 0.08);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--soft-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.package-card.featured .package-features i {
    color: var(--sunset-gold);
}

.btn-package {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--lake-teal), var(--soft-green));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(90, 155, 157, 0.3);
    margin-top: 1rem;
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(90, 155, 157, 0.4);
    background: linear-gradient(135deg, var(--soft-green), var(--lake-teal));
}

.package-card.featured .btn-package {
    background: linear-gradient(135deg, var(--sunset-gold), #C99A6E);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.package-card.featured .btn-package:hover {
    background: linear-gradient(135deg, #C99A6E, var(--sunset-gold));
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.5);
}

.package-note {
    background: rgba(90, 155, 157, 0.08);
    border-left: 4px solid var(--lake-teal);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.package-note i {
    font-size: 1.5rem;
    color: var(--lake-teal);
    flex-shrink: 0;
}

.package-note p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Packages */
@media (max-width: 992px) {
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-15px) scale(1);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-price .amount {
        font-size: 2.3rem;
    }
}

        /* Animations */
        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatGentle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes float-particle {
            0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            33% { transform: translate(15px, -25px) scale(1.1); opacity: 0.6; }
            66% { transform: translate(-10px, -45px) scale(0.9); opacity: 0.4; }
            100% { transform: translate(0, -60px) scale(1); opacity: 0; }
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }

        /* Responsive */
        @media (max-width: 992px) {
            .about-container,
            .location-container {
                grid-template-columns: 1fr;
            }

            .about-floating-card {
                position: static;
                margin-top: 2rem;
            }

            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                background: rgba(253, 251, 247, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                width: 100%;
                padding: 2.5rem;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .nav-links.active {
                right: 0;
            }

            .hero-bg {
                background-attachment: scroll;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.15rem;
            }

            .section-title {
                font-size: 2.3rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            section {
                padding: 2.5rem 5%;
            }
        }

        /* Mobile Responsive Updates */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            /* --- LOGO UPDATES START HERE --- */
            .logo {
                font-size: 1.2rem;
                gap: 0.5rem;
                max-width: 80%; /* Ensure it doesn't overlap the menu button */
            }
            
            .logo img {
                height: 35px; /* Slightly larger logo */
            }
            
            .logo span {
                display: block;      /* This brings the text back! */
                font-size: 1rem;     /* Smaller font to fit on mobile */
                font-weight: 700;
                white-space: nowrap; /* Keeps text on one line */
                overflow: hidden;    /* Safety for very small screens */
                text-overflow: ellipsis;
            }
            /* --- LOGO UPDATES END HERE --- */
        }

        /* For ultra-wide screens */
        @media (min-width: 1920px) {
            .hero-bg {
                background-size: 100% auto;
                min-width: 100vw;
                min-height: 100vh;
            }
        }
        /* Enhanced Dropdown Styling */
        .form-group select {
            width: 100%;
            padding: 1rem 1.3rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            color: var(--warm-white);
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 16px;
            padding-right: 3rem;
        }

        .form-group select:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.2);
        }

        .form-group select:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.22);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }

        .form-group select option {
            background: var(--lake-teal);
            color: white;
            padding: 0.8rem 1rem;
            font-size: 1rem;
        }

        /* Date Input Styling */
        .form-group input[type="date"] {
            cursor: pointer;
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 18px;
            padding-right: 1rem;
        }

        .form-group input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 1;
        cursor: pointer;
        filter: invert(1);
        width: 20px;
        height: 20px;
        }

        /* Form Section Title */
        .form-section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Form Row (Two-column layout) */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 0;
        }

/* Checkbox Group Styling - Professional Update */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.1rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

/* Hover Effect for the card */
.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hide default input visually but keep accessible */
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Text Styling & spacing for custom box */
.checkbox-label span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 35px; /* Space for the custom checkbox */
    font-weight: 400;
    transition: color 0.3s ease;
}

/* 1. The Custom Box (Unchecked) */
.checkbox-label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. The Checkmark Icon (Hidden by default) */
.checkbox-label span::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-55%) rotate(45deg) scale(0); /* Start scaled down */
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.05s;
}

/* --- Checked States --- */

/* Highlight the box background */
.checkbox-label input:checked ~ span::before {
    background: var(--sunset-gold);
    border-color: var(--sunset-gold);
    transform: translateY(-50%) scale(1.05); /* Subtle pulse */
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.5);
}

/* Reveal the checkmark */
.checkbox-label input:checked ~ span::after {
    opacity: 1;
    transform: translateY(-55%) rotate(45deg) scale(1);
}

/* Make text brighter */
.checkbox-label input:checked ~ span {
    color: #fff;
    font-weight: 500;
}

/* Highlight the entire card border using modern :has() selector */
.checkbox-label:has(input:checked) {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--sunset-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Accessibility Focus */
.checkbox-label input:focus-visible ~ span::before {
    outline: 2px solid white;
    outline-offset: 4px;
}

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .form-group select {
                background-position: right 0.8rem center;
            }
        }
    
    /* Dining Section Styling */
#dining {
    background: linear-gradient(to bottom, var(--warm-white), #f4f1ea);
    position: relative;
    overflow: hidden;
}

.dining-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:  radial-gradient(#5A9B9D 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.dining-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Layout */
.dining-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    margin-bottom: 4rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.feature-content h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 1rem 0;
}

.dining-badge {
    background: var(--sunset-gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.dining-list {
    list-style: none;
    margin-top: 1.5rem;
}

.dining-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--lake-teal);
}

.feature-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dining-feature:hover .feature-image img {
    transform: scale(1.05);
}

/* Grid Layout */
.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dish-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
    border: 1px solid rgba(90, 155, 157, 0.1);
}

.dish-card:hover {
    transform: translateY(-10px);
}

.dish-img {
    height: 220px;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dish-card:hover .dish-img img {
    transform: scale(1.1);
}

.dish-info {
    padding: 2rem;
    text-align: center;
}

.dish-info i {
    font-size: 2rem;
    color: var(--sunset-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.dish-info h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dish-info p {
    font-size: 0.95rem;
    color: #6B7C78;
    line-height: 1.6;
}

/* Responsive Dining Section */
@media (max-width: 900px) {
    .dining-feature {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .feature-image {
        /* CHANGED: Removed fixed 300px height */
        height: auto; 
        /* ADDED: Makes it a nice widescreen rectangle (like a YouTube video shape) */
        aspect-ratio: 16/9;
        order: -1; /* Image on top */
        width: 100%;
    }
    
    .feature-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* Scroll To Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--sunset-gold); /* Matches your brand gold */
    color: var(--warm-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    
    /* Hidden by default with animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Centering the icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* State when button is active (added by JS) */
#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover Effect */
#scrollTopBtn:hover {
    background: var(--lake-teal); /* Switches to Teal on hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(90, 155, 157, 0.4);
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* --- MOBILE GALLERY FIX & CREATIVE ZOOM --- */

/* Define the "Ken Burns" Slow Zoom Animation */
@keyframes mobileBreathing {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } /* Zooms in 15% */
}

@media (max-width: 768px) {
    /* 1. Adjust Card Height for Mobile */
    /* 320px is too tall for mobile, creating bad crops. 250px is balanced. */
    .gallery-item {
        height: 250px; 
    }

    /* 2. Apply the Automatic Zoom Effect */
    .gallery-item img {
        /* Alternate means it zooms IN, then zooms OUT smoothly */
        animation: mobileBreathing 12s infinite alternate ease-in-out;
        will-change: transform; /* Keeps animation smooth on phones */
    }

    /* 3. Improve Overlay Visibility */
    /* Since we can't "hover" on mobile, we show a subtle gradient always */
    .gallery-overlay {
        opacity: 1; 
        background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    }

    /* 4. Text Styling for Mobile */
    .gallery-overlay h4 {
        font-size: 1.1rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
        display: none; /* Hide subtitle on mobile to keep it clean, optional */
    }
}

/* Floating WhatsApp Button */
#whatsappFloat {
    position: fixed;
    bottom: 90px; /* Positioned above the Scroll Top button */
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366; /* Official WhatsApp Green */
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    
    /* Flexbox to center the icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Large readable icon */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Animation */
#whatsappFloat:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: #20BA56; /* Slightly darker green on hover */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    #whatsappFloat {
        bottom: 75px; /* Adjust slightly for mobile spacing */
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/* Gallery - Infinite Scroll & Zoom */
.gallery-wrapper {
    width: 100%;
    overflow: hidden; /* Hides the scrollbar */
    padding: 2rem 0;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content; /* Force single line */
    /* Adjust '40s' to make it faster or slower */
    animation: scrollGallery 40s linear infinite; 
}

/* Pause scrolling when user touches/hovers so they can look closely */
.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 320px;  /* RESTORED: Matches your original design exactly */
    width: 400px;   /* Fixed width to maintain the card shape */
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1); /* Original shadow restored */
}

/* The Continuous Zoom Effect (Ken Burns) */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zoom in and out continuously */
    animation: autoZoom 15s infinite alternate ease-in-out;
    will-change: transform;
}

/* Overlay Styling */
.gallery-overlay {
    position: absolute;
    inset: 0;
    /* Subtle gradient always visible so text can be read */
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show overlay on hover */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.gallery-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* Animations */
@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves exactly half way (the duplicate set) then resets */
}

@keyframes autoZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } /* Smooth 15% zoom */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-item {
        height: 250px; /* Smaller height for mobile phones */
        width: 280px;  /* Smaller width to fit screen better */
    }
    
    /* Keep overlay visible on mobile */
    .gallery-overlay {
        opacity: 1; 
    }
}