/* === FONTS === */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0D0C08;
    color: #FFFFFF;
}

/* HEADLINES */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #FFFFFF;
}

/* TEXT */
p {
    color: #C9C9C9;
    font-size: 18px;
    line-height: 1.7;
}

/* LINKS */
a {
    color: #F5D97A;
    text-decoration: none;
}

a:hover {
    color: #D4AF37;
}

/* === HEADER === */
.site-header {
    background: rgba(13, 12, 8, 0.85);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* NAVIGATION */
.main-navigation a {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.main-navigation a:hover {
    color: #D4AF37;
}

/* === BUTTONS === */
button,
input[type="submit"],
.cta-button {
    background: #D4AF37;
    color: #0D0C08;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
.cta-button:hover {
    background: #F5D97A;
    transform: translateY(-2px);
}

/* === SECTION SPACING === */
section {
    padding: 80px 20px;
}

/* === HERO / EINSTIEG === */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,12,8,0.9) 40%, rgba(13,12,8,0.5) 100%);
}

/* HERO TEXT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* === CARDS / BOXEN === */
.card {
    background: #1A1A1A;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

/* === FOOTER === */
footer {
    background: #0D0C08;
    border-top: 1px solid rgba(212,175,55,0.2);
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #888;
}