/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Color Palette - Inverted LATERAL branding */
    --primary-dark-blue: #003366;
    --darker-blue: #002244;
    --darkest-blue: #001122;
    --primary-yellow: #FFD700;
    --bright-yellow: #FFED4E;
    --light-yellow: #FFF2B3;
    --accent-blue: #66B3FF;
    --light-blue: #B3D9FF;
    --text-light: #E6F2FF;
    --text-secondary: #B3D9FF;
    --white: #ffffff;
    --card-bg: #004080;
    --border-blue: #336699;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Container */
    --container-max: 1200px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--darker-blue) 50%, var(--darkest-blue) 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-yellow);
}

h1 {
    font-size: 5.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
h2 { 
    font-size: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    background: rgba(0, 17, 34, 0.95);
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid white; */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    padding: 0;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 80px;
    width: auto;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-end;
    margin-right: 2em;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 200;
    transition: all 0.3s ease;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darkest-blue) 0%, var(--primary-dark-blue) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-blue);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--bright-yellow) 100%);
    color: var(--darkest-blue);
    font-weight: 700;
    /* box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); */
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bright-yellow) 0%, var(--primary-yellow) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    color: var(--darkest-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: var(--darkest-blue);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 179, 255, 0.4);
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--darker-blue) 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(102, 179, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Overview Section */
.overview-section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    margin-top: 2em;
    color: var(--primary-yellow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.overview-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-dark-blue) 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid var(--border-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-yellow);
}

.overview-card h3 {
    color: var(--accent-blue);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.overview-card p {
    position: relative;
    z-index: 1;
}

/* Status Section */
.status-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--darkest-blue) 100%);
    position: relative;
}

.status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.status-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.status-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--darkest-blue) 0%, rgba(0, 17, 34, 0.95) 100%);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
    border-top: 1px solid var(--primary-yellow);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.footer-section p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(102, 179, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-title {
    color: white;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    margin-top: 1em;
}

.page-subtitle {
    font-size: 1.25rem;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Content Sections */
.content-section {
    padding: var(--spacing-lg) 0;
}

.content-section:nth-child(even) {
    background: var(--light-gray);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Lists */
.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.styled-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-md) 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu {
        background: linear-gradient(135deg, var(--darkest-blue) 0%, var(--primary-dark-blue) 100%);
        border-top: 1px solid var(--border-blue);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .overview-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Art Images and Visual Elements */
.hero-art {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: var(--spacing-md) auto;
}

.section-art {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto var(--spacing-md);
}

.art-container {
    text-align: center;
    margin: var(--spacing-md) 0;
}

/* Visual accents */
.yellow-accent {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--bright-yellow) 100%);
    color: var(--darkest-blue);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    margin: var(--spacing-xs) 0;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    text-shadow: none;
    position: relative;
    z-index: 1;
}

.blue-accent {
    background: var(--primary-dark-blue);
    color: var(--light-blue);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    margin: var(--spacing-xs) 0;
    position: relative;
    z-index: 1;
}

/* Contact Email Styling */
.contact-email {
    font-size: 1.25rem;
    margin: var(--spacing-md) 0;
}

.email-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
