/* Legacy Frontend Configuration */

:root {
    --primary-bg: #000000;
    --secondary-bg: #111111;
    --accent-red: #E63946;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --border-color: #333333;
    --oswald-font: 'Oswald', sans-serif;
    --inter-font: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--inter-font);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--oswald-font);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Navbar */
.navbar-brand {
    font-size: 2rem;
    color: var(--text-primary) !important;
}
.brand-accent {
    color: var(--accent-red);
}
.nav-link {
    color: var(--text-primary) !important;
    font-family: var(--oswald-font);
    font-size: 1.1rem;
    transition: 0.3s;
}
.nav-link:hover, .dropdown-item:hover {
    color: var(--accent-red) !important;
}

/* Hero Section */
.hero-huge {
    height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 3px solid var(--accent-red);
}
.hero-huge::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}
.hero-title {
    font-size: 4.5rem;
    text-shadow: 2px 2px 20px rgba(230, 57, 70, 0.4);
}

.btn-premium {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 30px;
    font-family: var(--oswald-font);
    font-size: 1.2rem;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-premium:hover {
    background: #fff;
    color: var(--accent-red);
}

.static-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    transition: 0.4s ease;
}
.static-card:hover {
    border-left: 5px solid var(--accent-red);
    transform: translateY(-5px);
}
