:root {
    --spa-bg: #152e28;
    --spa-text: #f8f4e9;
    --spa-gold: #b9974a;
    --spa-gold-dark: #a27f41;
    --spa-green: #3f6450;
    --spa-cream: #fbf7ee;
    --spa-muted: #5b5a50;
    --spa-border: rgba(185, 151, 74, 0.18);
    --spa-card: #1d3f34;
    --spa-glow: rgba(185, 151, 74, 0.1);
}

html, body {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    min-height: 100vh;
    background-color: var(--spa-bg);
    background-attachment: fixed;
    color: var(--spa-text);
    font-family: 'Inter', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.text-gold {
    color: var(--spa-gold);
}

.border-gold {
    border-color: var(--spa-gold);
}

.bg-gold {
    background-color: var(--spa-gold);
}

.text-green {
    color: var(--spa-green);
}

.bg-cream {
    background-color: var(--spa-cream);
}

.border-cream {
    border-color: var(--spa-border);
}

.text-muted {
    color: var(--spa-muted);
}

.bg-glow {
    background-color: var(--spa-glow);
}

.shadow-soft {
    box-shadow: 0 20px 45px rgba(15, 35, 28, 0.12);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(63, 100, 80, 0.18);
}

.dashboard-body {
    background-color: #f5efe4;
    color: #2b2822;
}

.hero-panel {
    background: linear-gradient(180deg, rgba(15, 37, 29, 0.78), rgba(10, 21, 15, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-panel {
    background: rgba(15, 38, 29, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 240px;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.exclusive-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--spa-gold);
    background: var(--spa-gold-dark);
    border: 2px solid #b9974a; /* gold border */
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(185,151,74,0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.exclusive-badge:hover {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(185,151,74,0.9);
}

/* Exclusive workshop card – prominent gold highlight */
.exclusive-card {
    border: 2px solid var(--spa-gold);
    background: linear-gradient(135deg, rgba(185,151,74,0.12), rgba(185,151,74,0.04));
    box-shadow: 0 0 18px rgba(185,151,74,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    /* subtle scale to emphasize */
    transform: scale(1);
}
.exclusive-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 28px rgba(185,151,74,0.55);
    background: linear-gradient(135deg, rgba(185,151,74,0.18), rgba(185,151,74,0.06));
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(185, 151, 74, 0.25);
}

@media (max-width: 1024px) {
    .hero-panel,
    .ticket-panel,
    .feature-panel {
        min-height: auto;
    }
}

.feature-panel {
    background: rgba(15, 38, 29, 0.96);
}

.pass-print-body {
    font-family: 'Playfair Display', serif;
}

.pass-card {
    border-radius: 1rem;
}

.buy-ticket-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 50;
    min-width: 220px;
}
