/*
Theme Name: Fast Army Theme
Description: A lightweight, fast, and SEO-friendly custom theme.
Author: Custom Developer
Version: 1.0
*/

:root {
    --primary-bg: #0a3d14; /* Dark Green */
    --text-light: #ffffff;
    --accent-yellow: #f8c92a;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: #f9f9f9;
}

/* Header & Navigation */
.site-header {
    background-color: var(--primary-bg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 5%;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.navbar .logo img { width: 40px; }
.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-menu li a:hover { color: var(--accent-yellow); }

/* Hero Section */
.hero-section {
    background-color: var(--primary-bg);
    padding: 60px 5%;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.hero-content {
    flex: 1;
    min-width: 300px;
    color: var(--text-light);
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent-yellow); }
.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.btn-primary {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--text-light);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
}
.btn-secondary {
    background: var(--text-light);
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.stat-box h3 {
    color: var(--accent-yellow);
    font-size: 2rem;
    margin: 0;
}
.stat-box p { margin: 5px 0 0 0; font-size: 0.9rem; }

/* Hero Image/Logo */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}
.hero-circle {
    width: 350px;
    height: 350px;
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(248, 201, 42, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu { display: none; /* Add JS for mobile menu toggle later */ }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-content h1 { font-size: 2.5rem; }
}