@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Montserrat:wght@300;400;700&display=swap');

:root {
    --primary-color: #d63031;
    /* Vibrant Red from Logo */
    --primary-dark: #b71540;
    --secondary-color: #1a1a1a;
    /* Black/Dark */
    --text-color: #ecf0f1;
    /* White/Light Gray */
    --accent-color: #7f8c8d;
    /* Gray */
    --bg-color: #0c0c0c;
    --font-heading: 'Courier Prime', monospace;
    /* Typewriter style like logo */
    --font-body: 'Montserrat', sans-serif;
    /* Clean thin style like logo subtext */
    --font-main: var(--font-body);
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-img-lg {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-header nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-header nav a:hover {
    color: var(--primary-color);
}

/* Hero */
.hero-section {
    padding: 4rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    /* Placeholder for image */
    background-size: cover;
    background-position: center;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 20px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-cta:hover {
    background-color: #f1c40f;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}