
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        nav {
            background: rgba(255, 255, 255, 0.95);
            padding: 1rem 2rem;
            box-shadow: 0 4px 20px rgba(198, 159, 139, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid rgba(198, 159, 139, 0.2);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .nav-btn {
            background: none;
            border: 2px solid transparent;
            padding: 0.75rem 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: #8b6f5c;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }

        .nav-btn:hover {
            background: linear-gradient(135deg, #d8b49a 0%, #c69f8b 100%);
            color: white;
            border-color: #d8b49a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(198, 159, 139, 0.3);
        }

        .nav-btn.active {
            background: linear-gradient(135deg, #d8b49a 0%, #c69f8b 100%);
            color: white;
            border-color: #d8b49a;
        }

        .container {
            max-width: 900px;
            margin: 3rem auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 2;
        }

        .names-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding: 2rem 0;
        }

        .names-header::before {
            top: 0;
            left: 50%;
            transform: translateX(-50%) rotate(-15deg);
        }

        .names-header::after {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) rotate(15deg);
        }

        .names {
            font-family: 'Great Vibes', cursive;
            font-size: 5rem;
            background: linear-gradient(135deg, #c69f8b 0%, #d8b49a 50%, #c69f8b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(198, 159, 139, 0.2);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .wedding-date {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: #8b6f5c;
            font-weight: 400;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .location-info {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: #6b5547;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .location-pin {
            font-size: 1.5rem;
            color: #d8b49a;
        }

        .welcome-text {
            font-family: 'Great Vibes', cursive;
            font-size: 1.8rem;
            color: #8b6f5c;
            text-align: center;
            line-height: 2.2;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .section {
            display: none;
            background: rgba(255, 255, 255, 0.95);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(198, 159, 139, 0.2);
            border: 1px solid rgba(198, 159, 139, 0.15);
            backdrop-filter: blur(10px);
            position: relative;
        }

        .section::before {
            top: 15px;
            left: 15px;
        }

        .section::after {
            bottom: 15px;
            right: 15px;
            transform: rotate(180deg);
        }

        .section.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        h2 {
            font-family: 'Great Vibes', cursive;
            font-size: 3rem;
            color: #8b6f5c;
            margin-bottom: 2rem;
            text-align: center;
            letter-spacing: 1px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #8b6f5c;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 500;
        }

        input[type="text"],
        input[type="tel"],
        input[type="number"] {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e8ddd0;
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            background: #fdfcfa;
            color: #8b6f5c;
            transition: all 0.3s ease;
        }

        input:focus {
            outline: none;
            border-color: #d8b49a;
            box-shadow: 0 0 0 3px rgba(216, 180, 154, 0.1);
        }

        input.error {
            border-color: #d88a8a !important;
            background-color: #fff5f5 !important;
        }

        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(198, 159, 139, 0.3);
            z-index: 10000;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid #e8ddd0;
        }

        .popup.show {
            display: block;
            animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes popIn {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        }

        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 111, 92, 0.4);
            z-index: 9999;
            backdrop-filter: blur(8px);
        }

        .popup-overlay.show {
            display: block;
        }

        .popup h3 {
            font-family: 'Great Vibes', cursive;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .popup.error-popup h3 { color: #d88a8a; }
        .popup.success-popup h3 { color: #a8c9a5; }
        .popup.duplicate-popup h3 { color: #e8b068; }

        .popup p {
            font-family: 'Cormorant Garamond', serif;
            color: #8b6f5c;
            margin-bottom: 2rem;
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .popup button {
            background: linear-gradient(135deg, #d8b49a 0%, #c69f8b 100%);
            color: white;
            border: none;
            padding: 0.9rem 2.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(198, 159, 139, 0.3);
        }

        .popup button:hover {
            transform: scale(1.05);
        }

        .radio-group {
            display: flex;
            gap: 2rem;
            margin-top: 0.5rem;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            color: #8b6f5c;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
        }

        input[type="radio"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #d8b49a;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #d8b49a 0%, #c69f8b 100%);
            color: white;
            border: none;
            border-radius: 15px;
            font-family: 'Great Vibes', cursive;
            font-size: 2rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 6px 20px rgba(198, 159, 139, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(198, 159, 139, 0.4);
        }

        .location-details {
            text-align: center;
            margin-top: 2rem;
        }

        .location-address {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: #8b6f5c;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .slideshow-container {
            position: relative;
            max-width: 750px;
            margin: 3rem auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(198, 159, 139, 0.25);
            border: 3px solid #e8ddd0;
        }

        .slide {
            display: none;
        }

        .slide.active-slide {
            display: block;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            cursor: pointer;
        }

        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(216, 180, 154, 0.9);
            color: white;
            border: none;
            padding: 1rem;
            font-size: 2rem;
            cursor: pointer;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(198, 159, 139, 0.3);
        }

        .slide-nav:hover {
            background: rgba(198, 159, 139, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .slide-nav.prev { left: 20px; }
        .slide-nav.next { right: 20px; }

        .slide-dots {
            text-align: center;
            margin-top: 1.5rem;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 6px;
            background-color: rgba(198, 159, 139, 0.3);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active-dot {
            background-color: #d8b49a;
            transform: scale(1.3);
            border-color: #c69f8b;
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(139, 111, 92, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .lightbox.show {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 15px;
            box-shadow: 0 0 40px rgba(216, 180, 154, 0.5);
            border: 4px solid #e8ddd0;
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 50px;
            color: #d8b49a;
            cursor: pointer;
            transition: transform 0.3s ease;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .lightbox-close:hover {
            transform: scale(1.2) rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(216, 180, 154, 0.9);
            color: white;
            border: none;
            padding: 1rem;
            font-size: 2rem;
            cursor: pointer;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(198, 159, 139, 0.3);
        }

        .lightbox-nav:hover {
            background: rgba(198, 159, 139, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }

        .cazari-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 2rem;
        }

        .cazare-card {
            width: 320px;
            background: linear-gradient(135deg, #fdfcfa 0%, #f9f6f0 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(198, 159, 139, 0.2);
            transition: transform 0.3s ease;
            border: 2px solid #e8ddd0;
        }

        .cazare-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(198, 159, 139, 0.3);
        }

        .cazare-slideshow {
            position: relative;
            width: 100%;
            height: 220px;
        }

        .cazare-slideshow img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: none;
        }

        .cazare-slideshow img.active {
            display: block;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            background-color: rgba(216, 180, 154, 0.9);
            padding: 8px 12px;
            cursor: pointer;
            color: white;
            user-select: none;
            z-index: 1;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .arrow:hover {
            background-color: rgba(198, 159, 139, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow.left { left: 10px; }
        .arrow.right { right: 10px; }

        .cazare-info {
            padding: 1.5rem;
            color: #8b6f5c;
        }

        .cazare-info h3 {
            font-family: 'Cormorant Garamond', serif;
            color: #c69f8b;
            margin-bottom: 0.8rem;
            font-size: 1.5rem;
        }

        .cazare-info p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        footer {
            background: linear-gradient(135deg, #fdfcfa 0%, #f5f1e8 100%);
            color: #8b6f5c;
            padding: 4rem 2rem 2rem;
            margin-top: 5rem;
            border-top: 3px solid #e8ddd0;
            position: relative;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-title {
            font-family: 'Great Vibes', cursive;
            font-size: 3rem;
            color: #c69f8b;
            margin-bottom: 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.7);
            padding: 1.8rem;
            border-radius: 18px;
            border: 2px solid #e8ddd0;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(198, 159, 139, 0.2);
        }

        .contact-name {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 1.2rem;
            color: #8b6f5c;
            margin-bottom: 0.5rem;
        }

        .contact-phone {
            font-family: 'Montserrat', sans-serif;
            color: #a58872;
            font-size: 0.95rem;
        }

        .menu-text {
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            color: #8b6f5c;
            line-height: 1.8;
            font-size: 1.2rem;
        }

        .menu-text h3 {
            margin-top: 2rem;
            font-family: 'Great Vibes', cursive;
            font-size: 2.5rem;
            color: #c69f8b;
        }

        .menu-text p {
            margin-top: 0.5rem;
            margin-bottom: 1rem;
        }

        .menu-toggle-container {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .menu-toggle-btn {
            background: none;
            border: 2px solid #e8ddd0;
            padding: 0.8rem 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 500;
            color: #8b6f5c;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }

        .menu-toggle-btn:hover {
            background: linear-gradient(135deg, #d8b49a 0%, #c69f8b 100%);
            color: white;
            border-color: #d8b49a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(198, 159, 139, 0.3);
        }

        .menu-toggle-btn.active {
            background: linear-gradient(135deg, #d8b49a 0%, #c69f8b 100%);
            color: white;
            border-color: #d8b49a;
        }

        .menu-category {
            display: none;
        }

        .menu-category.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        @media (max-width: 768px) {
            .names { font-size: 3.5rem; }
            .wedding-date { font-size: 1.4rem; }
            .location-info { font-size: 1.1rem; }
            .nav-container { gap: 0.3rem; flex-wrap: nowrap; justify-content: center; }
            .nav-btn { padding: 0.5rem 0.8rem; font-size: 0.85rem; white-space: nowrap; }
            .section { padding: 2rem 1.5rem; }
            .container { margin: 2rem auto; }
            .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            footer { padding: 3rem 1.5rem 2rem; }
            .slide img { height: 320px; }
            .slide-nav { width: 45px; height: 45px; font-size: 1.5rem; }
            .floral-decoration { display: none; }
            h2 { font-size: 2.5rem; }
            .menu-toggle-container { gap: 0.5rem; }
            .menu-toggle-btn { padding: 0.6rem 1.5rem; font-size: 1rem; }
        }

        @media (max-width: 480px) {
            .names { font-size: 2.8rem; }
            .wedding-date { font-size: 1.2rem; }
            .location-info { font-size: 1rem; }
            nav { padding: 0.8rem 0.5rem; }
            .nav-container { gap: 0.2rem; }
            .nav-btn { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
            .footer-title { font-size: 2.2rem; }
            .popup { padding: 2rem 1.5rem; }
            .menu-toggle-container { gap: 0.3rem; }
            .menu-toggle-btn { padding: 0.5rem 1rem; font-size: 0.9rem; }
        }

                .loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 111, 92, 0.4);
            z-index: 10001;
            backdrop-filter: blur(8px);
        }

        .loading-overlay.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loading-container {
            text-align: center;
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(198, 159, 139, 0.3);
            border: 2px solid #e8ddd0;
        }

        .spinner {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .spinner-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid transparent;
            border-top-color: #d8b49a;
            border-radius: 50%;
            animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        }

        .spinner-ring:nth-child(1) {
            animation-delay: -0.45s;
        }

        .spinner-ring:nth-child(2) {
            animation-delay: -0.3s;
            border-top-color: #c69f8b;
        }

        .spinner-ring:nth-child(3) {
            animation-delay: -0.15s;
            border-top-color: #d8b49a;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .loading-text {
            font-family: 'Great Vibes', cursive;
            font-size: 1.8rem;
            color: #8b6f5c;
            margin-top: 1rem;
        }

        .loading-subtext {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            color: #a58872;
            margin-top: 0.5rem;
        }