/* ============================================
   THE CLUB - Check Back Soon Page
   Keeps original brand colors, fonts, and logo styling
   ============================================ */

:root {
    --primary-color: #1a2332;
    --secondary-color: #c9a961;
    --accent-color: #2a8c5f;
    --dark-bg: #0f1419;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cfd6dd;
    --border-color: rgba(255, 255, 255, 0.14);

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.16);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.28);

    --glow-gold: 0 0 20px rgba(201, 169, 97, 0.35);
    --glow-green: 0 0 20px rgba(42, 140, 95, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 2rem;
}

.particles-container {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-120px) translateX(40px); opacity: 0; }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: rgba(26, 35, 50, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.club-logo {
    height: 56px;
    width: auto;
    max-width: 220px;
    flex-shrink: 0;
}

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 97, 0.45);
    background: rgba(201, 169, 97, 0.12);
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: var(--glow-gold);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: ken-burns 28s ease-in-out infinite alternate;
}

@keyframes ken-burns {
    0% { transform: scale(1) translateX(0); }
    50% { transform: scale(1.08) translateX(-1.5%); }
    100% { transform: scale(1.03) translateX(1.5%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(42, 140, 95, 0.12), transparent 35%),
        linear-gradient(135deg, rgba(26, 35, 50, 0.94), rgba(15, 20, 25, 0.9));
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(100%, 900px);
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 169, 97, 0.16);
    border: 1px solid rgba(201, 169, 97, 0.55);
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--glow-gold);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary-color);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.75rem);
    margin-bottom: 1rem;
    text-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.accent-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.coming-soon-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto 2.5rem;
    max-width: 760px;
}

.soon-item {
    padding: 1.2rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
}

.soon-item i {
    display: block;
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.65rem;
}

.soon-item span {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 220px;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
    box-shadow: var(--glow-gold);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.soon-footer {
    position: relative;
    z-index: 3;
    background: rgba(15, 20, 25, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    padding: 1.15rem 2rem 1.4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(26px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .club-logo {
        height: 44.8px;
    }

    .coming-soon-card {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero {
        min-height: 100svh;
        padding-top: 7rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .nav-container {
        flex-direction: column;
    }

    .nav-status {
        font-size: 0.88rem;
        padding: 0.7rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }
}
