/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables: Aligned with Sapper Clapper logo (earthy, military tones) */
:root {
    --primary-color: #2f2f1f;   /* Dark olive green (background) */
    --secondary-color: #d4a017;  /* Warm mustard yellow (accents) */
    --accent-color: #8c7a4b;    /* Muted beige (buttons, highlights) */
    --text-color: #f5e8c7;      /* Light beige (text) */
    --nav-bg: rgba(47, 47, 31, 0.9); /* Semi-transparent olive */
}

/* General */
body {
    font-family: 'Poppins', sans-serif; /* Add via CDN: <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet"> */
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    max-width: 120px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Main */
main {
    padding: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #3f3f2f);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(140, 122, 75, 0.3);
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

/* Mission Section */
.mission {
    padding: 6rem 2rem;
    text-align: center;
    background: #3f3f2f; /* Slightly lighter olive */
}

.mission h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.mission p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    text-align: center;
}

.about h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.about h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.about p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Games Section */
.games {
    padding: 6rem 2rem;
    text-align: center;
}

.games h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.game-teaser {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.game-teaser h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.game-teaser p {
    font-size: 1.25rem;
}

.coming-soon {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--nav-bg);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(245, 232, 199, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .mission h2, .about h1, .games h1 { font-size: 2rem; }
    .game-teaser h2 { font-size: 1.8rem; }
    nav ul { gap: 1rem; }
    header { flex-direction: column; padding: 1rem; }
}