/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #b90e0e;
    --primary-dark: #8b0000;
    --text-main: #ffffff;
    --radius: 12px;           
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    height: 100vh;
    overflow: hidden; /* Prevents scrollbars */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

/* =========================================
   2. BACKGROUND (Matches Main Site)
   ========================================= */
#hero-background {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -10; background: #000;
}

#hero-background img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(185, 14, 14, 0.4) 0%, 
        rgba(0, 0, 0, 0.9) 100%
    );
    backdrop-filter: blur(4px);
}

/* =========================================
   3. LAYOUT
   ========================================= */
.coming-soon-container {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 700px;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.sub-text {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2.5rem;
}

/* Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(185, 14, 14, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .logo-img { height: 60px; }
    .action-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; }
}