:root {
    --primary: #800000; /* Maroon/Red */
    --primary-hover: #a00000;
    --secondary: #EDDC92; /* Gold */
    --navy: #0E2245;
    --navy-light: #162a4d;
    --accent: #800000;
    --accent-hover: #a00000;
    --danger: #ef4444;
    --success: #10b981;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    background: var(--navy);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.nav-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.8rem;
    }
    .nav-links a {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}

.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    color: white;
    padding: 60px 0;
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

/* Buttons (Universal #800000) */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    background: var(--primary);
    color: white;
}

.btn:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

.btn-gold {
    background: var(--secondary);
    color: var(--navy);
}

.btn-gold:hover {
    background: #fdf2c4;
}

/* Forms */
.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
}

/* Layout Utilities */
.text-gold { color: var(--secondary) !important; }
.bg-maroon { background: var(--primary) !important; color: white !important; }

/* Authentication Pages */
.auth-wrapper {
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f5f9;
    padding: 2rem;
}

.auth-card {
    background: #fff;
    width: 100%;
    max-width: 440px;
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.auth-card h2 {
    font-weight: 800;
    font-size: 1.8rem;
    margin: 1.5rem 0 2rem;
    color: var(--navy);
}

.auth-card .form-control {
    margin-bottom: 1.2rem;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
}

.auth-card .btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

/* Mobile Responsiveness Utilities */
@media (max-width: 768px) {
    .flex-column-mobile {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .hero-text {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-para {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .section-title {
        font-size: 2.2rem !important;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0 !important;
    }

    .grid-1-mobile {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .card-mobile-padding {
        padding: 2rem 1.5rem !important;
    }
}
