body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #133320; /* Dark military green */
    color: #d1d3d3; /* Light beige/white */
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #133320;
    padding: 10px 20px;
}

/* *********************************************************
Cookie Banner
********************************************************* */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
}
.cookie-banner button {
    background-color: #805e2e;;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
}
.cookie-banner button:hover {
    background-color: #a58d6b;;
}


/* Navi */
.navbar-custom {
    color: #F5F5DC;
}

.navbar-brand img {
    width: 80px;
    height: 80px;
}

.nav-link {
    display: flex;
    align-items: center;
}

.navbar-toggler-icon {
    background-image: none; /* Entfernt das Standard-Hintergrundbild */
    border: none;
    width: 25px;
    height: 3px;
    background-color: #F5F5DC; /* Setzt die Farbe auf Schriftfarbe */
    display: inline-block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: #F5F5DC; /* Setzt die Farbe */
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px; /* Abstand der oberen Linie */
}

.navbar-toggler-icon::after {
    top: 8px; /* Abstand der unteren Linie */
}

.navbar-nav .nav-link {
    color: #F5F5DC;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

.navbar-toggler {
    border: none;
    color: #F5F5DC;
}


/* Parallax Styles */
.parallax {
    background-image: url('img/Mannschaft.jpg');
    height: 400px; /* kannst du nach Wunsch anpassen */
    background-attachment: fixed; /* alternativ: fixed */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-content {
    text-align: center;
    color: #F5F5DC;
    padding: 20px;
}

.parallax-content h1 {
    font-size: 36px;
    margin: 0;
}

/* Content Styles */
.content {
    padding: 20px;
    text-align: center;
}

.text-box {
    background-color: #133320;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}

.text-box h2 {
    margin-top: 0;
    color: #F5F5DC;
}

.text-box p, .text-box ul {
    color: #d1d3d3;
    text-align: left;
    margin: 10px 0;
}

.text-box ul {
    list-style: disc;
    padding-left: 40px;
}

.text-box ul li {
    margin: 5px 0;
}

.content-with-image {
    display: flex;
    align-items: flex-start; /* Bild und Text oben ausrichten */
    gap: 20px; /* Abstand zwischen Bild und Text */
}

.content-with-image .text {
    flex: 1; /* Text nimmt den meisten Platz ein */
}

.content-with-image .image img {
    max-width: 100px; /* Bildbreite auf 100px beschränken */
    height: auto;
    border-radius: 5px; /* Optional: Runde Ecken */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #133320;
    color: #d1d3d3;
}

footer a {
    color: #d1d3d3;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

a {
    color: #d1d3d3; /* Links in der gleichen Schriftfarbe */
    text-decoration: none; /* Entfernt die Unterstreichung */
    display: inline-block; /* Ermöglicht transform-Effekte */
    transition: transform 0.2s ease-in-out; /* Animation beim Skalieren */
}

a:hover {
    text-decoration: underline;
}


/* Team Section */
.team {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.player {
    background-color: transparent; /* Entfernt den weißen Hintergrund */
    border: none; /* Entfernt den Rahmen */
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.player:hover {
    transform: scale(1.05);
}

.player-img {
    width: 200px; /* Einheitliche Breite */
    height: 200px; /* Einheitliche Höhe */
    object-fit: cover; /* Zuschneiden des Bildes, um es perfekt in den Kreis zu passen */
    object-position: center; /* Bild wird zentral positioniert */
    /*width: 100%; /* Nutze die volle Breite */
    /* height: auto; /* Behalte das Seitenverhältnis bei */
    border-radius: 50%; /* Rundung der Bilder */
    margin-bottom: 15px;
}

.player h2 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #F5F5DC; /* Passende Schriftfarbe für den Hintergrund */
}

.player p {
    font-size: 0.9em;
    color: #F5F5DC; /* Passende Schriftfarbe für den Hintergrund */
}

.profile-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
}

.profile-link:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .player {
        width: 90%;
    }
}

/* Events Section */
.event-box {
    background-color: #133320; /* Dunkelgrüner Hintergrund */
    color: #F5F5DC; /* Helle Schrift */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.event-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFD700; /* Goldene Schriftfarbe für Titel */
}

.event-box p {
    margin: 5px 0;
    font-size: 1em;
}


/* Sponsoren-Bereich */
.sponsors {
    text-align: center;
    padding: 10px;
}

/* Sponsoren-Box */
.sponsor-box {
    background-color: #1a402b; /* Dunkelgrünes Box-Design */
    color: #F5F5DC;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    max-width: 900px;
    text-align: left;
}

/* Text + Banner nebeneinander */
.sponsor-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

/* Textbereich */
.sponsor-text {
    flex: 1;
    max-width: 60%;
    margin-top: 0; /* Entfernt zusätzlichen oberen Abstand */
    padding-top: 0; /* Kein unnötiger Innenabstand */
}

/* Rechts ausgerichtetes Banner */
.sponsor-banner-right {
    flex-shrink: 0;
}

.sponsor-banner-right img {
    max-width: 200px; /* Größe des Banners anpassen */
    height: auto;
    border-radius: 8px; /* Optional: Leicht abgerundete Ecken */
}

/* Haupt-Banner unten */
.sponsor-logo {
    display: block; /* Block-Element, damit es unter dem Text bleibt */
    margin: 20px auto 0 auto; /* Abstand zum Text + zentrierte Position */
    max-width: 300px; /* Optional: Größe anpassen */
    height: auto;
}

.sponsor-logos img {
    max-width: 50%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
}

.sponsor-logos img:hover {
    transform: scale(1.05);
}


