:root {
    --primary-color: #4a3428; /* Coffee brown */
    --secondary-color: #8b5a2b; /* Lighter brown */
    --accent-color: #d4a76a; /* Gold accent */
    --light-color: #f5f5f5;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #777;
    --text-dark: #1a1a1a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.feature-box {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Exhibitions Section */
.exhibitions {
    background-color: white;
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.exhibition-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.exhibition-card:hover {
    
    transform: translateY(-10px);

            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        
        .main-nav li {
            margin-left: 30px;
        }
        
        .main-nav a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .main-nav a:hover:after,
        .main-nav a.active:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: url('../images/hero-bg.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* About Section */
        .about {
            background-color: var(--light-color);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 50px;
        }
        
        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        .experience-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: var(--primary-color);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .experience-badge .years {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            color:  #1a1a1a;
        }
        
        .feature-box {
            display: flex;
            margin-bottom: 20px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(139, 90, 43, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .feature-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        /* Exhibitions Section */
        .exhibitions {
            background-color: white;
        }
        
        .exhibitions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .exhibition-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .exhibition-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .exhibition-image {
            height: 260px;
            background-size: cover;
            background-position: center;
        }
        
        .exhibition-details {
            padding: 25px;
        }
        
        .exhibition-date {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }
        
        .exhibition-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .exhibition-description {
            color: #333;
            margin-bottom: 20px;
        }
        
        /* Artists Section */
        .artists {
            background-color: var(--light-color);
        }
        
        .artists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .artist-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
        }
        
        .artist-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .artist-image {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .artist-details {
            padding: 25px 20px;
        }
        
        .artist-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .artist-bio {
            color: #333;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(245, 234, 204, 0.9), rgba(138, 101, 2, 0.9)), url('images/stats-bg.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat-item {
            padding: 30px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: block;
        }
        
        /* Upcoming Events */
        .upcoming-events {
            background-color: white;
        }
        
        .events-list {
            margin-top: 50px;
        }
        
        .event-item {
            display: flex;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .event-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .event-date {
            background-color: var(--primary-color);
            color: white;
            padding: 30px;
            text-align: center;
            min-width: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .event-day {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .event-month {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .event-details {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .event-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .event-location {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .event-time {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background-color: #4a3428;
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-links h3, .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }
        
        .footer-links h3:after, .footer-contact h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .contact-info {
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        .contact-icon {
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-text {
            flex: 1;
            opacity: 0.8;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Loading Spinner */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(139, 90, 43, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary-color);
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .event-item {
                flex-direction: column;
            }
            
            .event-date {
                flex-direction: row;
                justify-content: center;
                padding: 15px;
            }
            
            .event-day {
                margin-right: 10px;
                margin-bottom: 0;
            }
        }
        
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: white;
                transition: var(--transition);
                padding: 30px 0;
                overflow-y: auto;
            }
            
            .main-nav.active {
                left: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            .main-nav li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .exhibitions-grid {
                grid-template-columns: 1fr;
            }
            
            .artists-grid {
                grid-template-columns: 1fr;
            }
        }

        :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;
        }
        
        /* Contact Page Styles */
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/gallery-hero.jpg') center/cover no-repeat;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            margin-top: 80px;
        }

        .contact-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .contact-container {
            padding: 80px 0;
            background-color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-info {
            padding: 20px;
        }

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-color);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .contact-text p, 
        .contact-text a {
            color: #666;
            text-decoration: none;
            line-height: 1.6;
            transition: var(--transition);
        }

        .contact-text a:hover {
            color: var(--accent-color);
        }

        .social-media h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }

        .contact-form {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .contact-form h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-form h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .map-container {
            margin-top: 60px;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* 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 */
        .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;
            }
        }
 