:root {
    --black: #000000;
    --rich-black: #0a0a0a;
    --gold: #F7E7CE;
    --dark-gold: #C5A059;
    --platinum: #E5E4E2;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--black);
    color: var(--platinum);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--gold);
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--dark-gold);
    box-shadow: 0 0 10px var(--gold);
}

/* Components */
.gala-card {
    background: linear-gradient(145deg, #111, #050505);
    padding: 3rem;
    border: 1px solid var(--dark-gold);
    margin-bottom: 2rem;
    position: relative;
}

.gala-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(247, 231, 206, 0.2);
    pointer-events: none;
}

.btn-gala {
    background: linear-gradient(to bottom, var(--gold), var(--dark-gold));
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 40px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-gala:hover {
    background: linear-gradient(to bottom, var(--white), var(--gold));
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
    text-decoration: none;
}

/* Hero */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, #222 0%, #000 100%);
}

#spotlightCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 40px;
    border: 1px solid var(--dark-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 5px var(--gold));
}

/* Menu */
.menu-item {
    border-bottom: 1px dashed var(--dark-gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

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

/* Awards */
.award-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 10px;
    margin-bottom: 15px;
    background: #111;
}

/* Audio */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-gala {
    width: 60px;
    height: 60px;
    background: var(--black);
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.btn-music-gala:hover {
    background: var(--gold);
    color: var(--black);
}

/* Footer */
footer {
    background: var(--rich-black);
    color: var(--dark-gold);
    padding: 4rem 0;
    border-top: 1px solid var(--dark-gold);
}