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

        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        body.locked {
            overflow: hidden;
        }

        h1, h2, h3 {
            font-family: 'Georgia', serif;
        }

        p, li, button, a {
            font-family: 'Poppins', sans-serif;
        }

        /* Password Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .modal-overlay.hidden {
            display: none;
        }

        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
            max-width: 400px;
            width: 90%;
            text-align: center;
        }

        .modal-content h2 {
            color: #4a2c2a;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .modal-content p {
            margin-bottom: 2rem;
            color: #666;
        }

        .modal-content input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
            text-align: center;
        }

        .modal-content input:focus {
            outline: none;
            border-color: #8b4513;
        }

        .modal-content button {
            width: 100%;
            background: #8b4513;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }

        .modal-content button:hover {
            background: #6d3410;
        }

        .error-message {
            color: #d32f2f;
            font-size: 0.9rem;
            margin-top: -1rem;
            margin-bottom: 1rem;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        /* Navigation */
          nav {
            background: #5b0202;
            padding: 1rem 10%;
            position: fixed;
            width: 90%;
            left: 5%;
            top: 15px;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        nav a {
            text-decoration: none;
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #f5e6d3;
        }

        .menu-toggle {
            display: none;
            background: transparent;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1200') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero-card {
            background: white;
            color: #333;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            max-width: 500px;
            margin: 0 auto;
            min-height: 280px;
            position: relative;
        }

        .hero-card-content {
            transition: opacity 0.5s ease;
        }

        .hero-card-content.fade {
            opacity: 0;
        }

        .hero-card h3 {
            color: #4a2c2a;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .hero-card p {
            font-size: 1rem;
            line-height: 1.7;
        }

        .btn {
            background: #8b4513;
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #6d3410;
        }

        /* Our Story Section */
        .story {
            padding: 5rem 5%;
            background: #f5e6d3;
        }

        .story h2 {
            font-size: 2.5rem;
            color: #4a2c2a;
            margin-bottom: 3rem;
            text-align: center;
        }

        .story-toggle {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .toggle-btn {
            background: transparent;
            color: #4a2c2a;
            padding: 0.8rem 2rem;
            border: 2px solid #8b4513;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .toggle-btn.active {
            background: #8b4513;
            color: white;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .story-content.reverse {
            direction: rtl;
        }

        .story-content.reverse > * {
            direction: ltr;
        }

        .story-section {
            display: none;
        }

        .story-section.active {
            display: block;
        }

        .story-images {
            position: relative;
            height: 500px;
        }

        .story-img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .story-img.active {
            opacity: 1;
        }

        .story-text h3 {
            color: #4a2c2a;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .story-text ul {
            list-style: none;
            padding-left: 1rem;
        }

        .story-text li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .story-text li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #8b4513;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 0;
            background: #4a2c2a;
            color: white;
            overflow: hidden;
        }

        .gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            padding: 0 5%;
            text-align: center;
        }

        .carousel-container {
            margin-bottom: 1.5rem;
        }

        .carousel-track {
            display: flex;
            gap: 1.5rem;
            animation: scroll 30s linear infinite;
        }

        .carousel-track.reverse {
            animation: scrollReverse 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scrollReverse {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        .gallery-img {
            width: 350px;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* Itinerary Section */
        .itinerary {
            padding: 5rem 5%;
            background: #f5e6d3;
        }

        .itinerary h2 {
            font-size: 2.5rem;
            color: #4a2c2a;
            margin-bottom: 3rem;
            text-align: center;
        }

        .itinerary-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .venue-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .venue-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .venue-details {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .venue-details h3 {
            color: #4a2c2a;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .detail-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            gap: 1rem;
        }

        .detail-item i {
            color: #8b4513;
            font-size: 1.2rem;
            width: 30px;
        }

        .schedule {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .schedule h3 {
            color: #4a2c2a;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            text-align: center;
        }

        .schedule-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: #f5e6d3;
            border-radius: 8px;
            border-left: 4px solid #8b4513;
        }

        .schedule-time {
            font-weight: 600;
            color: #4a2c2a;
            min-width: 100px;
        }

        .schedule-desc {
            flex: 1;
        }

        .schedule-desc h4 {
            color: #4a2c2a;
            margin-bottom: 0.3rem;
        }

        /* Presence Section */
        .presence {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }

        .presence-text {
            background: #4a2c2a;
            color: white;
            padding: 5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .presence-text h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .presence-img {
            background: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?w=800') center/cover;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 5%;
            background: #f5e6d3;
        }

        .contact h2 {
            font-size: 2.5rem;
            color: #4a2c2a;
            margin-bottom: 3rem;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .map {
            width: 100%;
            height: 400px;
            background: #ccc;
            border-radius: 5px;
        }

        .contact-info h3 {
            color: #4a2c2a;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #4a2c2a;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: #8b4513;
        }

        /* Footer */
        footer {
            background: #4a2c2a;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            nav {
                width: 95%;
                left: 2.5%;
                padding: 1rem 2rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
                display: none;
                background: #5b0202;
                padding: 1rem 0;
                border-radius: 20px;
                margin-top: 1rem;
            }

            nav ul.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.4;
            }

            .hero-card {
                padding: 2rem;
                min-height: 260px;
            }

            .hero-card h3 {
                font-size: 1.3rem;
            }

            .hero-card p {
                font-size: 0.95rem;
            }

            .story-content,
            .story-content.reverse {
                grid-template-columns: 1fr;
                gap: 2rem;
                direction: ltr;
            }

            .story-images {
                height: 350px;
            }

            .venue-section {
                grid-template-columns: 1fr;
            }

            .presence {
                grid-template-columns: 1fr;
            }

            .presence-text {
                padding: 3rem 1.5rem;
            }

            .presence-img {
                min-height: 300px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .story h2,
            .gallery h2,
            .itinerary h2,
            .contact h2 {
                font-size: 2rem;
            }

            .gallery-img {
                width: 280px;
                height: 200px;
            }

            section {
                padding: 3rem 1.5rem !important;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 0.8rem 1.5rem;
            }

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

            .hero-card {
                padding: 1.5rem;
                min-height: 240px;
            }

            .story-images {
                height: 280px;
            }

            .gallery-img {
                width: 240px;
                height: 180px;
            }

            .modal-content {
                padding: 2rem;
            }

            .schedule-item {
                flex-direction: column;
                gap: 0.5rem;
            }
        }