
        :root {
            --primary-color: #4a3428; /* Coffee brown */
            --secondary-color: #8b5a2b; /* Lighter brown */
            --accent-color: #d4a76a; /* Gold accent */
            --text-light: #f5f5f5;
            --text-dark: #333333;
            --bg-light: #f9f5f0;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .main-nav li {
            margin-left: 30px;
            position: relative;
        }
        
        .main-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            padding: 5px 0;
            transition: var(--transition);
            position: relative;
        }
        
        .main-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        .main-nav a:hover:after,
        .main-nav a.active:after {
            width: 100%;
        }
        
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-color);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo img {
            height: 50px;
            margin-right: 15px;
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        /* Main Content */
        main {
            margin-top: 100px;
            padding: 40px 0;
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: flex-start;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 40px;
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        /* Main Layout */
        .main-container {
            display: flex;
            gap: 40px;
            width: 100%;
        }
        
        /* Events Section */
        .about-section {
            width: 100%;
        }
        
        .about-content {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-text {
            flex: 2;
        }
        
        .about-text h2 {
            color: var(--primary-color);
            margin: 30px 0 15px;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            align-self: flex-start;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        .gallery-stats {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid #e0d6c9;
            border-bottom: 1px solid #e0d6c9;
        }
        
        .stat-item {
            text-align: center;
            padding: 0 20px;
        }
        
        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Testimonials Slider */
        .testimonials {
            margin: 80px 0;
            position: relative;
            padding: 40px 0;
            background-color: #f9f5f0;
            width: 100%;
        }
        
        .testimonials h2 {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .testimonials h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .testimonial-slider {
            width: 100%;
            margin: 0 auto;
            position: relative;
            padding: 0 20px;
        }
        
        .testimonial-slide {
            padding: 0 15px;
            outline: none;
        }
        
        .testimonial-card {
            background: white;
            padding: 60px 15%;
            border-radius: 0;
            box-shadow: none;
            transition: all 0.4s ease;
            text-align: center;
            margin: 0;
            position: relative;
            border: none;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-card:before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 6rem;
            color: var(--accent-color);
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            line-height: 1;
            opacity: 0.15;
            z-index: 0;
        }
        
        .testimonial-card:hover {
            transform: none;
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1.4rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: var(--text-dark);
            position: relative;
            padding: 0 10%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-top: 30px;
            display: block;
            font-style: normal;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding: 0 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            height: 30px;
        }
        
        .testimonial-dots {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: auto;
            padding: 0 20px;
        }
        
        .testimonial-nav button {
            background: white;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-nav button:hover {
            background: var(--accent-color);
            color: white;
        }
        
        .slick-dots {
            position: relative;
            display: flex !important;
            justify-content: center;
            align-items: center;
            margin: 0 15px;
            padding: 0;
            list-style: none;
            width: auto;
            bottom: 0;
            transition: all 0.3s ease;
        }
        
        .slick-dots li {
            margin: 0 8px;
            width: 10px;
            height: 10px;
            position: relative;
        }
        
        .slick-dots button {
            width: 10px;
            height: 10px;
            padding: 0;
            border: none;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            text-indent: -9999px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            display: block;
        }
        
        .slick-dots .slick-active button {
            background: var(--accent-color);
            transform: scale(1.3);
            opacity: 1;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }
        
        .testimonial-slide {
            transition: opacity 1s ease-in-out;
        }
        
        .testimonial-slide.sliding {
            opacity: 0.7;
        }
        
        .slick-dots li button:before {
            display: none;
        }
        
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
            }
            
            .gallery-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .stat-item {
                padding: 10px 0;
            }
        }
        
        .events-section {
            flex: 2;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            display: flex;
            align-items: stretch;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .event-card:hover .select-indicator {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .event-image {
            width: 40%;
            height: auto;
            object-fit: cover;
        }
        
        .event-details {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .event-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .event-date, .event-location {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: #666;
            font-size: 0.95rem;
        }
        
        .event-date i, .event-location i {
            margin-right: 8px;
            color: var(--secondary-color);
        }
        
        .event-description {
            margin: 15px 0;
            color: #555;
            font-size: 0.95rem;
        }
        
        .btn-select {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid var(--primary-color);
            width: 100%;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .select-indicator {
            margin-top: auto;
            padding: 12px 0 0;
            text-align: center;
            color: var(--primary-color);
            font-weight: 500;
            font-size: 0.9rem;
            border-top: 1px dashed #ddd;
            transition: var(--transition);
        }

        .event-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
            border-radius: 8px;
            overflow: hidden;
        }

        .event-card.selected {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 2px var(--accent-color);
            transform: translateY(-2px);
        }

        .btn-submit:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            opacity: 0.7;
        }
        
        .btn-view:hover {
            background-color: transparent;
            color: var(--primary-color);
        }
        
        /* Login Section */
        .login-section {
            flex: 1;
            position: sticky;
            top: 120px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }
        
        .login-section h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.8rem;
        }
        
        /* Login Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.show {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            width: 100%;
            max-width: 450px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .modal.show .modal-content {
            transform: translateY(0);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #888;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            color: var(--primary-color);
        }
        
        .modal-title {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 52, 40, 0.1);
        }
        
        .btn-submit {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn-submit:hover {
            background-color: var(--secondary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .footer-links {
            margin: 5px 0;
        }
        
        .footer-links a {
            color: var(--text-light);
            margin: 0 10px;
            text-decoration: none;
            transition: var(--transition);
        }
        
        /* Footer */
        .site-footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-logo .logo {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .footer-logo .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-logo .logo-text {
            color: white;
            font-size: 1.3rem;
        }
        
        .footer-tagline {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 10px;
            line-height: 1.6;
        }
        
        .footer-links {
            flex: 1;
            flex-wrap: wrap;
            text-align: left;
        }
        
        .footer-section {
            flex: 1;
            min-width: 180px;
        }
        
        /* Footer Styles */
        .site-footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 70px 0 0;
            font-size: 15px;
            line-height: 1.7;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .footer-column {
            padding: 0 15px;
        }
        
        .footer-column h3 {
            color: var(--accent-color);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-color);
        }
        
        .footer-logo a {
            display: flex;
            align-items: center;
            color: #ffffff;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            text-decoration: none;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-description {
            margin-bottom: 25px;
            color: #b3b3b3;
            line-height: 1.6;
            text-align: left;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }
        
        .footer-links li:before {
            content: '\f054';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 6px;
            color: var(--accent-color);
            font-size: 10px;
        }
        
        .footer-links a {
            color: #b3b3b3;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            color: #b3b3b3;
        }
        
        .contact-info i {
            color: var(--accent-color);
            margin-right: 15px;
            margin-top: 5px;
            width: 16px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin: 20px 0;
            justify-content: flex-start;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: #ffffff;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .payment-methods {
            margin-top: 25px;
        }
        
        .payment-methods h4 {
            font-size: 14px;
            margin-bottom: 10px;
            color: #b3b3b3;
        }
        
        .payment-icons {
            display: flex;
            gap: 10px;
        }
        
        .payment-icons i {
            font-size: 30px;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .payment-icons i:hover {
            color: var(--accent-color);
        }
        
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-column {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-column {
                text-align: center;
                padding: 0;
            }
            
            .footer-column h3:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-logo a {
                justify-content: center;
            }
            
            .footer-links li {
                text-align: left;
                padding-left: 25px;
            }
            
            .contact-info {
                max-width: 300px;
                margin: 0 auto;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-legal {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .social-links {
                justify-content: center;
            }
        }
        
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-column {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .event-card {
                flex-direction: column;
            }
            
            .event-image {
                width: 100%;
                height: 200px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-column {
                text-align: center;
                padding: 0;
            }
            
            .footer-column h3:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-logo a {
                justify-content: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-links li {
                text-align: left;
                padding-left: 25px;
            }
            
            .contact-info {
                max-width: 300px;
                margin: 0 auto;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-legal {
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 992px) {
            .main-container {
                flex-direction: column;
            }
            
            .login-section {
                position: static;
                margin-top: 40px;
            }
            
            .event-card {
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .events-grid {
                grid-template-columns: 1fr;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 10px;
            }
            
            main {
                margin-top: 140px;
            }
        }
