/* Allgemeine Einstellungen */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background-image: url("../img/hintergrund.png");
    background-size: cover; /* oder: background-size: 100% 100%; */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #066DB2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
}



/* Navbar */
.navbar {
    display: flex;
    justify-content: center;  /* Die Links bleiben in der Mitte */
    align-items: center;
    padding: 20px;
    background-color: #052e54;
    position: sticky;
    top: 0;
    z-index: 10;
    gap: 30px;
    width: 100%;
}

/* Der Container für die mittigen Links (Home, Über uns, etc.) */
.left-links {
    display: flex;
    align-items: center;
    justify-content: center;  /* Zentriert die Links in der Mitte */
    gap: 30px;  /* Abstände zwischen den Links */
    flex-grow: 1;  /* Lässt diese Gruppe wachsen, um Platz für die rechte Gruppe zu schaffen */
}

/* Der Container für die rechten Links (Glocke, Zahnrad, Login/Logout) */
.right-links {
    display: flex;
    align-items: center;
    gap: 15px;  /* Abstände zwischen den Icons */
}

/* Links-Style */
.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #38bdf8;
}

.notification-icon {
    position: relative;  /* Positioniert das Badge relativ zur Glocke */
}

/* Das Badge wird nun direkt oben rechts an der Glocke positioniert */
.notification-badge {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
    position: absolute;
    top: -3px;  /* Setzt das Badge leicht oberhalb der Glocke */
    right: -3px; /* Versetzt es leicht nach rechts */
    z-index: 10; /* Stellt sicher, dass das Badge über der Glocke liegt */
}


.flag-icon {
    font-size: 1.5em;
    vertical-align: middle;
    margin-left: 10px;
}

/* Footer */
footer {
    background-color: #052e54;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-links a,
.footer-social a {
    color: #b0b7c2;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-social a:hover {
    color: #38bdf8;
}
.footer-social i {
    font-size: 20px;
}
.hockey-stick {
    display: inline-block;
    margin-left: 15px;
}
.hockey-stick i {
    font-size: 40px;
    vertical-align: middle;
    color: #000;
}

/* Impressum */
.impressum-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    color: #333;
}
.impressum-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}
.impressum-content p {
    margin-bottom: 15px;
}
/* Footer-Container bleibt gleich */
footer {
    background-color: #1e2a47; /* Same background as the body */
    color: #fff;
    padding: 20px 0; /* Ein wenig Abstand oben und unten */
    text-align: center;
    position: relative;
    width: 100%;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center; /* Mittig ausrichten */
    gap: 20px; /* Abstand zwischen den Icons */
    margin-top: 10px; /* Ein kleiner Abstand zum Copyright-Text */
}

/* Verhindert, dass die Icons zu groß werden und den Footer vergrößern */
.social-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px; /* Kleinere Größe für die Icons */
    transition: background-color 0.3s, transform 0.3s;
}

/* Hover-Effekt für die Icons */
.social-icon:hover {
    background-color: #4FD1C5; /* Türkis bei Hover */
    transform: scale(1.1); /* Leichte Vergrößerung bei Hover */
}

/* Spezifisches Styling für TikTok-Icon */
.social-icon.tiktok {
    background-color: #000;
}

/* Spezifisches Styling für Instagram-Icon */
.social-icon.instagram {
    background-color: #E4405F;
}

/* Login-Container */
.login-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    backdrop-filter: blur(6px);
}

/* Login-Box mit modernem Look */
.login-box {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    transition: transform 0.3s ease;
}
.login-box:hover {
    transform: scale(1.02);
}

/* Überschrift */
.login-box h2 {
    font-size: 28px;
    margin-bottom: 24px;
    font-family: 'Bebas Neue', sans-serif;
    color: #052e54;
}

/* Eingabefelder */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #38bdf8;
}

/* Login-Button */
.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #1e90ff, #38bdf8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: linear-gradient(to right, #187bcd, #2ca5f5);
}

/* Fehlermeldung */
.error-message {
    color: #e63946;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Impressum */
.impressum-section {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.impressum-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #052e54;
    margin-bottom: 24px;
    text-align: center;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
    font-size: 16px;
    color: #444;
}

.impressum-content p {
    margin-bottom: 16px;
}

/* Responsive Optimierung */
@media (max-width: 768px) {
    .login-box {
        padding: 30px 20px;
    }

    .impressum-section h2 {
        font-size: 1.8rem;
    }
}
