/* --- Landing Page - Glassmorphism Redesign --- */
:root {
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.2);
    --gold-hover: rgba(212, 175, 55, 0.4);
    --red: #DC2626;
    --black-overlay: rgba(0, 0, 0, 0.85);
    --glass-bg: rgba(20, 20, 20, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

.landing-body {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Outfit', sans-serif;
    color: #FFF;
}

/* Background */
.landing-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 1;
}

.landing-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(1.1);
    transform: scale(1.05); /* Slight scale to hide edges during load/resize */
}

.landing-overlay {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, var(--black-overlay) 100%);
}

/* Main Layout Wrapper */
.landing-main {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

/* Glassmorphism Card */
.landing-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    width: 100%;
    animation: fadeUp 0.8s ease-out forwards;
}

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

/* Typography */
.landing-logo-container {
    margin-bottom: 1.5rem;
}

.landing-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.landing-brand-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    letter-spacing: 8px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 300;
    display: block;
    margin-top: 0.5rem;
}

.landing-tagline {
    font-size: 1.1rem;
    color: #DDD;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Actions */
.landing-actions {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

.landing-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    flex: 1; /* Makes buttons equal width */
}

.landing-btn.btn-primary {
    background: var(--gold-dim);
    border-color: rgba(212, 175, 55, 0.4);
}

.landing-btn:hover {
    background: var(--gold-hover);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.landing-btn:hover .btn-icon {
    transform: scale(1.1);
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .landing-glass-card {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    /* Stack buttons absolutely perfectly */
    .landing-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .landing-btn {
        width: 100%; /* Force full width within the card */
        padding: 1.2rem;
        font-size: 0.95rem;
        justify-content: center;
    }
}
