        :root {
            --beige: #e5d7c4;
            --terracotta: #b66c53;
            --dark-brown: #1e0d01;
            --sage: #8D8B63;
            --white: #FFFFFF;
        }
        
        body {
            font-family: 'Red Hat Display', sans-serif;
            color: var(--dark-brown);
            background-color: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        .luxe-title {
            font-family: 'Red Hat Display', sans-serif;
            font-weight: 700;
            color: var(--dark-brown);
            position: relative;
            display: inline-block;
            letter-spacing: 1px;
        }
        
        .luxe-title:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--sage));
            bottom: -15px;
            left: 0;
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }
        
        .animate-title .luxe-title:after {
            transform: scaleX(1);
        }
        
        .hero-section {
            background: linear-gradient(rgba(30, 13, 1, 0.3), rgba(30, 13, 1, 0.5)), url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--beige);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(30, 13, 1, 0.7) 100%);
            z-index: 1;
        }
        
        .hero-content {
            text-align: center;
            z-index: 2;
            transform: translateY(30px);
            opacity: 0;
            transition: all 1s ease-out;
        }
        
        .hero-content.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-family: 'Red Hat Display', sans-serif;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            font-weight: 700;
            letter-spacing: 2px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.8;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .events-section {
            padding: 100px 0;
            background-color: var(--beige);
            position: relative;
        }
        
        .event-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .event-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .event-card:hover .event-img {
            transform: scale(1.05);
        }
        
        .event-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 10px 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .event-date .day {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--terracotta);
            line-height: 1;
        }
        
        .event-date .month {
            font-size: 0.9rem;
            text-transform: uppercase;
            color: var(--dark-brown);
        }
        
        .event-content {
            padding: 30px;
        }
        
        .event-title {
            font-family: 'Red Hat Display', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-brown);
        }
        
        .event-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--terracotta);
        }
        
        .event-meta i {
            margin-right: 8px;
        }
        
        .event-meta span {
            margin-right: 20px;
            font-size: 0.9rem;
        }
        
        .event-excerpt {
            margin-bottom: 20px;
            color: var(--dark-brown);
            opacity: 0.8;
        }
        
        .btn-events {
            background-color: var(--terracotta);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .btn-events:hover {
            background-color: var(--dark-brown);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .events-filter {
            margin-bottom: 50px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            background: transparent;
            border: 1px solid var(--terracotta);
            color: var(--terracotta);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--terracotta);
            color: white;
        }
        
        .private-events {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .private-events-content {
            background: linear-gradient(rgba(30, 13, 1, 0.8), rgba(30, 13, 1, 0.8)), url('https://images.unsplash.com/photo-1527529482837-4698179dc6ce?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            padding: 80px;
            border-radius: 16px;
            color: var(--beige);
        }
        
        /* Responsive */
        @media (max-width: 1199.98px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .private-events-content {
                padding: 60px;
            }
        }
        
        @media (max-width: 991.98px) {
            .hero-section {
                height: 50vh;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .private-events-content {
                padding: 40px;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .luxe-title:after {
                width: 100%;
            }
            
            .events-filter {
                margin-bottom: 30px;
            }
            
            .event-img {
                height: 200px;
            }
            
            .private-events-content {
                padding: 30px;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .event-content {
                padding: 20px;
            }
            
            .event-title {
                font-size: 1.3rem;
            }
        }