/* =========================
   GLOBAL RESET & BASICS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #0e0e0e;
    color: #e5e5e5;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================
   NAVIGATION
========================= */
header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar img {
    height: 45px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar ul li a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #4caf50;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    height: 100vh;
    background: 
        linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.85)
        ),
        url("assets/hero-bg.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cfcfcf;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4caf50;
    color: #000;
}

.btn-primary:hover {
    background: #66bb6a;
}

.btn-secondary {
    border: 1px solid #4caf50;
    color: #4caf50;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #4caf50;
    color: #000;
}

/* =========================
   CONTENT SECTIONS
========================= */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 120px 20px 80px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
    padding-left: 15px;
}

.card {
    background: #161616;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* =========================
   TEAM / FRAKTIONEN
========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    background: #1b1b1b;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.grid-item h3 {
    margin-bottom: 10px;
    color: #4caf50;
}

/* =========================
   APPLICATION PAGES
========================= */
.apply-box {
    background: #161616;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
}

.apply-box p {
    margin-bottom: 25px;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #090909;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #777;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
    }

    .navbar ul {
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}
