body {
    font-family: 'Roboto', sans-serif;
    background-color: #0A0F14;
    color: #ffffff;
}

:root {
    --primary-color: #0A0F14;   /* sehr dunkles Blau / fast schwarz */
    --accent-color: #C00000;    /* Wölfe-Rot */
    --light-bg: #11161d;
}

a {
    color: #C00000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

a:hover {
    border-bottom: 1px solid #C00000;
}

section {
    scroll-margin-top: 100px;
}


/* Navbar */
.navbar {
    background: var(--primary-color);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 75px;
    margin-right: 15px;
}
.navbar a {
    color: #ffffff !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.navbar a:hover {
    color: var(--accent-color) !important;
    border-bottom: none !important;
}

.navbar .nav-link {
    color: #ffffff;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--accent-color);
}

/* Hero */
.hero {
    min-height: 95vh;
    background: linear-gradient(
        rgba(10, 15, 20, 0.85),
        rgba(10, 15, 20, 0.85)
        ),
        /*url('https://images.unsplash.com/photo-1518609878373-06d740f60d8b?auto=format&fit=crop&w=1600&q=80')*/
        url('../images/home_hero.png')
        center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    padding-top: 140px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.section-title {
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bg-light-alt {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #a00000;
    border-color: #a00000;
}

.card {
    background-color: #11161d;
    border: 1px solid #222;
    color: #fff;
}

.card img {
    border-bottom: 1px solid #222;
}

footer {
    background: var(--primary-color);
    color: #fff;
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
}

footer a {
    color: #ffffff;
}

footer a:hover {
    color: var(--accent-color);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}