/* ═══════════════════════════════════════════════════
   MARIESTADBOISHOCKEYSE — LUXURY CASINO HOTEL THEME
   High-Stakes Elegance
═══════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────── */
:root {
    --black:       #0a0a0a;
    --black-soft:  #111111;
    --black-card:  #141414;
    --black-card2: #1a1a1a;
    --gold:        #c9a84c;
    --gold-light:  #e2c47a;
    --gold-dim:    #8a6f30;
    --white:       #f5f0e8;
    --white-dim:   #9a9080;
    --white-faint: #5a5248;

    --font-display: 'Cinzel', serif;
    --font-body:    'Cormorant Garamond', serif;
    --font-alt:     'EB Garamond', serif;

    --section-pad: clamp(80px, 12vw, 160px);
    --max-width:   900px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Site Wrapper ───────────────────────────────── */
.site-wrapper {
    position: relative;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 56px;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--white);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--white-dim);
    transition: color 0.3s;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }

.nav-est {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--white-faint);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0,0,0,0.8) 0%, transparent 60%),
        var(--black);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 120% at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: heroFadeIn 1.6s ease both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-title-serif {
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
    display: block;
}

.hero-title-italic {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(48px, 9vw, 100px);
    color: var(--gold);
    letter-spacing: 0.01em;
    display: block;
    line-height: 1.1;
}

.hero-ornament {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    display: block;
}

.ornament-diamond {
    width: 8px;
    height: 8px;
    fill: var(--gold);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--white-dim);
    text-transform: uppercase;
    margin-bottom: 64px;
}

.hero-explore {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--white-faint);
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
    border: 1px solid rgba(201,168,76,0.2);
    padding: 12px 20px;
    background: transparent;
}
.hero-explore svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    animation: bounceDown 2s ease-in-out infinite;
}
.hero-explore:hover { color: var(--gold); border-color: rgba(201,168,76,0.5); }

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

/* ═══════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════ */
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.section-eyebrow {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title em {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.section-ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.ornament-diamond-sm {
    width: 8px;
    height: 8px;
    fill: var(--gold);
}

/* ═══════════════════════════════════════════════
   LEGACY SECTION
═══════════════════════════════════════════════ */
.legacy {
    padding: var(--section-pad) 0;
}

.legacy-text {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.9;
    color: var(--white-dim);
    max-width: 620px;
    margin: 0 auto 60px;
    font-weight: 300;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(201,168,76,0.15);
    max-width: 580px;
    margin: 0 auto;
    padding: 40px 0;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    stroke: none;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--white-faint);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(201,168,76,0.2);
}

/* ═══════════════════════════════════════════════
   CASINO SECTION
═══════════════════════════════════════════════ */
.casino {
    padding: var(--section-pad) 0;
    background: var(--black-soft);
    position: relative;
}

.casino::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.casino::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.casino-intro {
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.85;
    color: var(--white-dim);
    max-width: 540px;
    margin: 0 auto 60px;
    font-weight: 300;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.1);
    margin-top: 20px;
}

.game-card {
    background: var(--black-card);
    padding: 40px 32px;
    text-align: left;
    transition: background 0.3s;
}
.game-card:hover { background: var(--black-card2); }

.game-label {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--gold-dim);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.game-name {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.game-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--white-faint);
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   DINING SECTION
═══════════════════════════════════════════════ */
.dining {
    padding: var(--section-pad) 0;
}

.venues-list {
    border: 1px solid rgba(201,168,76,0.12);
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.venue {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 36px 40px;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    transition: background 0.3s;
}
.venue:last-child { border-bottom: none; }
.venue:hover { background: rgba(201,168,76,0.03); }

.venue-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
}

.venue-number {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--gold-dim);
    letter-spacing: 0.1em;
}

.venue-tag {
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 0.15em;
    color: var(--white-faint);
    text-transform: uppercase;
    line-height: 1.5;
}

.venue-info { flex: 1; }

.venue-name {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.venue-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--white-faint);
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   CLOSING QUOTE
═══════════════════════════════════════════════ */
.closing-quote {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    background: var(--black-soft);
}

.closing-quote::before, .closing-quote::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.closing-quote::before { top: 0; }
.closing-quote::after  { bottom: 0; }

.ornament-diamond-gold {
    width: 10px;
    height: 10px;
    fill: var(--gold);
    margin-bottom: 32px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.closing-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    color: var(--gold);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-tagline-sm {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-dim);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-col-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--white-faint);
    font-weight: 300;
}

.footer-base {
    text-align: center;
    padding: 20px 40px;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--white-faint);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .venue {
        flex-direction: column;
        gap: 16px;
        padding: 28px 24px;
    }

    .venue-meta { min-width: unset; flex-direction: row; align-items: center; gap: 16px; }
}

@media (max-width: 640px) {
    :root { --section-pad: 60px; }

    .site-nav { padding: 0 20px; }
    .nav-est, .nav-links li:not(:first-child) { display: none; }

    .section-inner { padding: 0 24px; }

    .stats-row { flex-direction: column; gap: 32px; padding: 32px 20px; }
    .stat-divider { width: 60px; height: 1px; }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 24px 40px;
    }

    .closing-text { font-size: clamp(30px, 8vw, 52px); }

    .hero-explore { display: none; }
}
