 /* =========================================================
           BASE STYLES
           ========================================================= */
        :root {
            /* Define text color if you plan to use it consistently */
            --text-color: #333;
        }
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }
        body {
            background: #f4cce9;
            color: var(--text-color);
            font-family: 'Galada', cursive; /* Fallback to Galada as Gagalin may not exist; adjust if custom font */
            line-height: 1.6;
        }
        /* --- HEADER --- */
        header {
            background: radial-gradient(circle at 10% 20%, #ffe6f2 0%, #ffb3d9 40%, #ff66b3 100%);
            color: #ffffff;
            text-align: center;
            font-size: 38px;
            font-weight: bold;
            position: relative; /* Changed from fixed for better mobile menu dropdown */
            overflow: visible; /* Fixed: Changed from hidden to visible for mobile dropdown */
            z-index: 1000;
        }
        header::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image:
                radial-gradient(#ffffff 2px, transparent 2px),
                radial-gradient(#ffffff 2px, transparent 2px),
                radial-gradient(#ffffff 2px, transparent 2px);
            background-size: 80px 80px;
            background-position: 0 0, 40px 40px, 20px 60px;
            opacity: 0.55;
            pointer-events: none;
            clip-path: inset(0 0 0 0 round 0);
        }
        .header-content {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            padding: 0 20px; /* Adjusted padding */
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-family: 'Dancing Script', cursive; /* Using Dancing Script as fallback for Brittany Signature */
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
            font-size: 20px;
            border-radius: 25px;
            border: none;
            background: linear-gradient(45deg, #f7e5b4, #d4af37);
            padding: 0.6rem 1.2rem;
            color: black;
        }
      
        /* --- Navigation Styles (Desktop Default) --- */
        nav {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .nav-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-links li {
            display: flex;
        }
      
        .btn {
            display: flex;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            border-radius: 25px;
            border: none;
            background: linear-gradient(45deg, #f7e5b4, #d4af37);
            padding: 0.6rem 1.2rem;
            color: black;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        /* Burger Menu (Hidden on Desktop) */
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        .burger div {
            width: 28px;
            height: 4px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s;
        }
        /* --- HERO SECTION --- */
        .hero {
            background: url('img/1.jpg') no-repeat center center/cover;
            box-shadow: 0 4px 8px #ff66b3;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1; /* Added z-index to ensure it's below menu */
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(172, 161, 171, 0.57);
            z-index: 1; /* Overlay z-index below content */
        }
        .hero-content {
            position: relative;
            z-index: 2; /* Content above overlay */
            padding: 2rem;
        }
        .hero h1 {
            font-family: 'Dancing Script', cursive;
            font-size: 3rem;
            color: white;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
            animation: glow 3s infinite alternate;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 24px;
            color: white;
            font-style: italic;
        }
        @keyframes glow {
            from { text-shadow: 0 0 20px gold; }
            to { text-shadow: 0 0 40px gold, 0 0 60px #ffd700; }
        }
        /* --- SECTIONS GENERAL --- */
        .section {
            padding: 60px 20px;
            max-width: 1200px;
            width: 90%;
            margin: 40px auto 40px; /* Added left/right margin via width:90% and auto */
            background: #fcc5ec;
            border-radius: 20px;
        }
        .section:nth-child(even) {
            background: whitesmoke;
        }
        .section h2 {
            color: black;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            text-align: center;
            font-weight: 700;
            font-family: 'Dancing Script', cursive;
        }
        .section p {
            color: black;
            text-align: center;
            line-height: 1.6;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        /* --- LOCATIONS BUTTONS --- */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            padding: 20px 0;
        }
        .location-btn {
            background: linear-gradient(45deg, #f7e5b4, #d4af37);
            border: none;
            padding: 1rem;
            border-radius: 10px;
            color: black;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .location-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        /* --- GALLERY --- */
        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 20px;
            background: #fcc5ec;
            max-width: 1200px;
            margin: 0 auto; /* Center the gallery */
            border-radius: 20px;
        }
        .gallery-item {
            position: relative;
            width: 100%; /* Use 100% of grid cell */
            max-width: 250px; /* Set a max width for large screens */
            height: 320px;
            border: 4px solid #940954;
            border-radius: 14px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            justify-self: center; /* Center item in grid cell */
        }
        .gallery-item:hover {
            transform: scale(1.07);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        /* Hearts container */
        .hearts {
            position: absolute;
            inset: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0;
        }
        .gallery-item:hover .hearts {
            opacity: 1;
        }
        /* Many floating hearts */
        .hearts span {
            position: absolute;
            font-size: 28px;
            color: rgba(255, 255, 255, 0.75);
            animation: float 2.5s infinite ease-in-out;
        }
        .hearts span:nth-child(1) { left: 20%; animation-delay: 0s; }
        .hearts span:nth-child(2) { left: 40%; animation-delay: 0.3s; }
        .hearts span:nth-child(3) { left: 60%; animation-delay: 0.5s; }
        .hearts span:nth-child(4) { left: 75%; animation-delay: 0.7s; }
        .hearts span:nth-child(5) { left: 10%; animation-delay: 1s; }
        @keyframes float {
            0% { transform: translateY(20px) scale(0.5); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateY(-40px) scale(1.1); opacity: 0; }
        }
        /* --- FLOATING BUTTONS --- */
        .floating-container {
            position: fixed;
            right: 25px;
            bottom: 35px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 99999;
        }
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            font-size: 32px;
            color: #fff;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: 0.3s ease;
            animation: pulse 1.8s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
            50% { transform: scale(1.08); box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); }
            100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
        }
        .floating-btn::after {
            content: "";
            position: absolute;
            width: 120%;
            height: 120%;
            background: rgba(255, 255, 255, 0.25);
            top: -100%;
            left: -100%;
            transform: rotate(25deg);
            transition: 0.4s;
        }
        .floating-btn:hover::after {
            top: 100%;
            left: 100%;
        }
        .floating-btn:hover {
            transform: scale(1.18);
        }
        .whatsapp {
            background: #25D366;
            box-shadow: 0 0 15px #25D366;
        }
        .phone {
            background: #0088ff;
            box-shadow: 0 0 15px #0088ff;
        }
        .whatsapp img {
            width: 32px;
            height: 32px;
        }
        /* --- FOOTER --- */
        .footer {
            background: radial-gradient(circle at 10% 20%, #ffe6f2 0%, #ffb3d9 40%, #ff66b3 100%);
            min-height: 100px;
            padding: 2.5rem 1.5rem;
            text-align: center;
        }
        .footer p {
            color: white;
            font-size: 1rem;
        }
        /* =========================================================
           RESPONSIVE DESIGN – MOBILE + TABLET FIXES
           ========================================================= */
        /* Tablet (max-width: 992px) */
        @media (max-width: 992px) {
            .gallery {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            .gallery-item {
                max-width: none;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 18px;
            }
            .section h2 {
                font-size: 2rem;
            }
            .section {
                width: 95%;
            }
            .locations-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 0.8rem;
            }
        }
        /* Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            .section {
                padding: 40px 15px;
                width: 95%;
            }
          
            /* Show burger menu */
            .burger {
                display: flex;
            }
            /* Burger transition to 'X' */
            .burger.active .line1 {
                transform: rotate(45deg) translate(6px, 6px);
            }
          
            .burger.active .line2 {
                opacity: 0;
            }
          
            .burger.active .line3 {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            /* Hide navigation links by default */
            .nav-links {
                display: none;
                position: absolute;
                top: 70px; /* Dropdown below the header */
                left: 0;
                width: 100%;
                background: radial-gradient(circle at 10% 20%, #ffe6f2 0%, #ffb3d9 40%, #ff66b3 100%);
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
                gap: 1rem; /* Added gap between mobile nav links */
                z-index: 1001; /* Higher z-index to appear above hero */
            }
            /* Show navigation links when 'active' */
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 0.8rem 1.2rem;
                font-size: 1.1rem;
            }
            /* Hero Section */
            .hero {
                height: 360px;
            }
            .hero::before {
                height: 360px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 16px;
            }
            /* Gallery 2 Columns */
            .gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding: 15px;
            }
            .gallery-item {
                height: 230px;
                max-width: 100%;
            }
            /* Floating Buttons */
            .floating-container {
                right: 15px;
                bottom: 15px;
            }
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
        }
        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
          
            .header-content {
                padding: 0 15px;
            }
            /* Hero Section */
            .hero {
                height: 300px;
            }
            .hero::before {
                height: 300px;
                background: rgba(241, 214, 239, 0.7); /* Slightly lighter overlay */
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 14px;
            }
            /* Gallery 1 Column */
            .gallery {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 20px;
            }
          
            .gallery-item {
                height: 300px;
                max-width: 300px; /* Constrain single item width */
                margin: 0 auto; /* Center individual items */
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section p {
                font-size: 1rem;
            }
            .section {
                width: 98%;
            }
            /* Floating Buttons */
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 26px;
            }
            .whatsapp img {
                width: 24px;
                height: 24px;
            }
            .locations-grid {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
        }