/* Allgemeine Einstellungen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Schwarzer Hintergrund */
    color: #fff; /* Weiße Schrift */
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #006bb3; /* Dunkleres Rot für den Header */
    padding: 10px 0;
}

header .logo h1 {
    color: #fff;
    text-align: center;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

header nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Sektion */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/hero-bg.jpg');
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

#hero h2 {
    font-size: 48px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-buttons a {
    display: inline-block;
    background-color: #006bb3; /* Dunkleres Rot für Buttons */
    color: #fff;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-buttons a:hover {
    background-color: #990000; /* Noch dunkleres Rot beim Hover */
}

/* Features Sektion */
#features {
    padding: 50px 0;
    text-align: center;
}

.feature-box {
    display: inline-block;
    width: 30%;
    margin: 0 10px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
}

.feature-box h3 {
    color: #006bb3; /* Dunkleres Rot für Überschriften */
    margin-bottom: 15px;
}

/* News Sektion */
#news {
    padding: 50px 0;
    text-align: center;
}

.news-item {
    margin-bottom: 20px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

.news-item h3 {
    color: #006bb3; /* Dunkleres Rot für News-Titel */
    margin-bottom: 10px;
}

.news-item p {
    color: #ccc;
}

.news-item small {
    color: #777;
}

/* Footer */
footer {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
}
