/* Luxury-Style EventNight Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --accent-gold: #FFD700;
    --accent-gold-dark: #B8860B;
    --accent-gold-light: #FFF8DC;
    --text-gold: #FFD700;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #333333;
    --border-gold: #FFD700;
    --shadow-gold: rgba(255, 215, 0, 0.3);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-luxury: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    background: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Static Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        var(--gradient-black);
    z-index: -1;
}

@keyframes luxuryGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Header - Luxury Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 4px 20px var(--shadow-gold);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-svg {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px var(--shadow-gold));
}

.logo-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--shadow-gold));
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--shadow-gold);
    text-decoration: none;
    position: relative;
    animation: logoShine 3s ease-in-out infinite alternate;
}

@keyframes logoShine {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    filter: blur(20px);
    animation: logoGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes logoGlow {
    0% { opacity: 0; }
    100% { opacity: 0.3; }
}

/* Navigation - Luxury Style */
.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.2;
}

.nav-link:hover,
.nav-link.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--shadow-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-gold);
}

/* Main Content */
main {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    position: static;
    width: 100%;
    overflow-x: hidden;
    display: block;
}

/* Page Wrapper */
.page-wrapper {
    width: 100%;
    position: static;
    display: block;
    overflow: hidden;
}

/* Section Spacing */
section {
    position: static !important;
    display: block;
    width: 100%;
    box-sizing: border-box;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Welcome Section - Luxury Style */
.welcome-section {
    background: var(--gradient-luxury);
    padding: 6rem 0;
    position: static;
    overflow: hidden;
    width: 100%;
    clear: both;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: auto;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: -1;
}

@keyframes welcomeGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.welcome-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text {
    position: relative;
    z-index: 2;
}

.welcome-title {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--shadow-gold);
    animation: titleShine 3s ease-in-out infinite alternate;
}

@keyframes titleShine {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.welcome-subtitle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.welcome-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 3rem;
    text-align: justify;
}

.welcome-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-gold);
}

.stat-item:hover::before {
    opacity: 0.1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--shadow-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-visual {
    position: relative;
    z-index: 2;
}

.luxury-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.luxury-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px var(--shadow-gold);
}

.luxury-card:hover::before {
    opacity: 0.1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--accent-gold);
}

.card-header h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.vip-badge {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px var(--shadow-gold);
    animation: badgePulse 2s ease-in-out infinite alternate;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.card-content p {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - Luxury */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-luxury);
    position: static;
    overflow: hidden;
    width: 100%;
    clear: both;
    margin: 0;
    padding: 4rem 0 0 0;
    border-top: 2px solid var(--accent-gold);
    z-index: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

@keyframes heroAmbient {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 50px var(--shadow-gold);
    animation: titleFloat 4s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes titleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--text-gold);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Featured Events - Luxury Grid */
.featured-events {
    margin-top: 0;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.events-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.showcase-event {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.showcase-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.showcase-event:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-gold);
}

.showcase-event:hover::before {
    opacity: 0.1;
}

.event-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-event:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.event-badge {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px var(--shadow-gold);
}

.event-info {
    padding: 2rem;
}

.event-info h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-venue {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.event-btn {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.event-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

/* Program Section - Luxury */
.program-section {
    padding: 6rem 0;
    background: var(--gradient-black);
    position: relative;
}

.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.page-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.event-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-gold);
}

.event-card:hover::before {
    opacity: 0.1;
}

.event-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 2.5rem;
}

.event-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date, .event-venue {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.event-description {
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.event-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.event-link:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

/* Event Detail - Luxury */
.event-detail {
    padding: 4rem 0;
    background: var(--gradient-black);
    min-height: 100vh;
}

.event-banner {
    height: 500px;
    overflow: hidden;
    margin-bottom: 4rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.event-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.event-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-header h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.meta-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

.meta-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.meta-value {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.event-description {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.event-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.map-placeholder {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map-placeholder p {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Story Section - Luxury */
.story-section {
    padding: 6rem 0;
    background: var(--gradient-black);
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-align: justify;
}

/* Ledger Section - Luxury */
.ledger-section {
    padding: 6rem 0;
    background: var(--gradient-black);
    position: relative;
}

.ledger-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ledger-content h2 {
    color: var(--accent-gold);
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.ledger-content p {
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Footer - Luxury Redesign */
.footer {
    background: var(--gradient-luxury);
    border-top: 2px solid var(--accent-gold);
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.footer-tagline {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    opacity: 1;
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 2rem 0;
    position: relative;
}

.footer-glow-line {
    height: 2px;
    background: var(--gradient-gold);
    margin-bottom: 2rem;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--shadow-gold);
}

.footer-bottom-content {
    display: block;
    text-align: center;
}

.footer-copyright p {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-copyright p:first-child {
    font-weight: 600;
    color: var(--accent-gold);
}

/* Luxury Experience Section */
.luxury-experience {
    background: var(--gradient-black);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.luxury-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.luxury-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.luxury-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.luxury-subtitle {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.luxury-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 3rem;
    text-align: justify;
}

.luxury-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--accent-gold);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-gold);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    min-width: 3rem;
    text-align: center;
}

.feature-text h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.6;
}

.luxury-card-large {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.card-header-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--accent-gold);
}

.card-header-luxury h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
}

.membership-badge {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.benefit-text {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient-luxury);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.testimonials-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-gold);
}

.testimonial-card:hover::before {
    opacity: 0.1;
}

.testimonial-content p {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Banners - Luxury */
.banner {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    margin: 1rem 0;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.age-banner {
    border-color: var(--accent-gold);
}

.cookie-banner {
    border-color: var(--accent-gold);
}

.banner-content p {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Disclaimers */
.disclaimer {
    color: var(--accent-gold);
    font-size: 1rem;
    text-align: center;
    margin-top: 2rem;
    opacity: 0.8;
    font-style: italic;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--accent-gold);
}

/* Error Section */
.error-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--gradient-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-section h1 {
    font-size: 4rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.error-section p {
    color: var(--text-white);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Contact Form Section - Luxury Style */
.contact-section {
    background: var(--gradient-black);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.contact-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-form-container:hover::before {
    opacity: 0.05;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 48px; /* Touch-friendly minimum height */
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px var(--shadow-gold);
    background: rgba(0, 0, 0, 0.8);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 3rem;
    appearance: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='%23000000'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.privacy-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px var(--shadow-gold);
}

.submit-btn {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-gold);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    align-self: center;
    min-width: 200px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 1.2rem;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px var(--shadow-gold);
    animation: successPulse 2s ease-in-out infinite alternate;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.success-message h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.success-message p {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.reset-btn {
    background: transparent;
    color: var(--accent-gold);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.reset-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    /* Large Tablet/Small Desktop */
    .welcome-section {
        padding: 5rem 0;
    }
    
    .luxury-experience {
        padding: 5rem 0;
    }
    
    .testimonials {
        padding: 5rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .events-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .luxury-content {
        gap: 3rem;
    }
    
    .luxury-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Tablet Optimizations */
    .welcome-section {
        padding: 5rem 0;
    }
    
    .luxury-experience {
        padding: 5rem 0;
    }
    
    .testimonials {
        padding: 5rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .events-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .luxury-content {
        gap: 3rem;
    }
    
    .luxury-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Contact Form Tablet */
    .contact-form-container {
        max-width: 90%;
        padding: 3rem;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Fix mobile spacing between topbar and content */
    main {
        margin-top: 80px;
        min-height: calc(100vh - 80px);
    }
    
    .header-container {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        transition: left 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        display: block;
        border: 2px solid var(--accent-gold);
        border-radius: 15px;
        transition: all 0.3s ease;
        background: rgba(255, 215, 0, 0.1);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--accent-gold);
        color: var(--primary-black);
        transform: scale(1.05);
    }
    
    .welcome-section {
        padding: 4rem 0;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .welcome-title {
        font-size: 3rem;
    }
    
    .welcome-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .luxury-card {
        padding: 2rem;
    }
    
    /* Hero Section Mobile Fix */
    .hero {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .events-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-event {
        margin-bottom: 1rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-meta {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .event-header h1 {
        font-size: 2.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 3rem 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-column a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .footer-bottom-content {
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
    }
    
    /* Luxury Experience Section Mobile */
    .luxury-experience {
        padding: 4rem 0;
    }
    
    .luxury-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .luxury-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .luxury-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .luxury-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .luxury-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .luxury-card-large {
        padding: 2rem;
    }
    
    /* Testimonials Section Mobile */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Contact Form Mobile */
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
        max-width: 100%;
    }
    
    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 150px;
        width: 100%;
        margin-top: 1rem;
    }
    
    .success-message {
        padding: 2rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
    
    .success-message p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    /* Event Detail Mobile Responsive */
    .event-detail {
        padding: 1.5rem 0;
    }
    
    .event-banner {
        height: 200px;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .event-header h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .event-meta {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .meta-item {
        padding: 1rem;
        text-align: center;
        background: rgba(255, 215, 0, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .meta-label {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.3rem;
        color: #FFD700;
        font-weight: 500;
    }
    
    .meta-value {
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
    }
    
    .event-description {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .event-description h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .event-description p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
    }
    
    .event-features {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .event-features h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
    }
    
    .map-placeholder {
        padding: 1.5rem;
        text-align: center;
    }
    
    .map-placeholder h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .map-placeholder p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Further reduce spacing on small mobile */
    main {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }
    
    .header-container {
        padding: 0.8rem;
    }
    
    .logo-svg {
        height: 45px;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    /* Event Detail Extra Small Mobile */
    .event-header h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .event-meta {
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .meta-item {
        padding: 0.8rem;
    }
    
    .meta-label {
        font-size: 0.8rem;
    }
    
    .meta-value {
        font-size: 0.9rem;
    }
    
    .event-description {
        padding: 1rem;
    }
    
    .event-description h3 {
        font-size: 1.2rem;
    }
    
    .event-description p {
        font-size: 0.9rem;
    }
    
    .event-features {
        padding: 1rem !important;
    }
    
    .event-features h3 {
        font-size: 1.2rem;
    }
    
    .map-placeholder {
        padding: 1rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.2rem;
    }
    
    .map-placeholder p {
        font-size: 0.85rem;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Contact Form Small Mobile */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.8rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .success-message {
        padding: 1.5rem;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
    }
    
    .success-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .success-message h3 {
        font-size: 1.3rem;
    }
    
    .success-message p {
        font-size: 0.9rem;
    }
    
    /* Small Mobile Optimizations */
    .welcome-section {
        padding: 3rem 0;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1.2rem;
    }
    
    .welcome-description {
        font-size: 1rem;
    }
    
    .luxury-experience {
        padding: 3rem 0;
    }
    
    .luxury-title {
        font-size: 2rem;
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .event-header h1 {
        font-size: 2rem;
    }
    
}

/* Event Detail Responsive - Desktop to Tablet */
@media (max-width: 1200px) {
    .event-banner {
        height: 400px;
    }
    
    .event-header h1 {
        font-size: 3.5rem;
    }
    
    .event-meta {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .event-banner {
        height: 350px;
    }
    
    .event-header h1 {
        font-size: 3.2rem;
    }
    
    .event-meta {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .event-banner {
        height: 300px;
    }
    
    .event-header h1 {
        font-size: 2.8rem;
    }
    
    .event-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 2rem;
    }
    
    .meta-item {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Medium Mobile - Better transition */
@media (max-width: 640px) {
    .event-meta {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .meta-item {
        padding: 1.2rem;
    }
    
    .event-header h1 {
        font-size: 2.4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--accent-gold);
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: var(--accent-gold);
    color: #000;
}

.cookie-accept:hover {
    background: #FFE55C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cookie-decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}


/* Cookie Banner Mobile */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.8rem;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-actions {
        gap: 0.5rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Event Features Grid */
.event-features {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.event-features h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.features-grid > div {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.features-grid > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-gold);
}

.features-grid p {
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.features-grid svg {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--accent-gold);
}