/* Allgemeines Styling */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0a192f;
    padding: 8px 20px; /* Weniger Padding fÃƒÂ¼r einen schmaleren Header */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    height: 50px; /* Falls du eine feste HÃƒÂ¶he mÃƒÂ¶chtest */
}

.hero {
    min-height: 300px; /* Setzt eine Mindesthöhe für alle Hero-Sektionen */
}

/* Logo-Bereich */
.logo {
    font-family: 'Playfair Display', serif; /* Playfair Schriftart */
    display: flex;
    align-items: center;
    gap: 10px; /* Abstand zwischen Logo und Text */
    font-size: 20px;
    font-weight: bold;
    color: #ffffff; /* Heller Text */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Falls das Logo ein SVG/Icon ist */
.logo svg {
    height: 30px;
    width: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px; /* Weniger Abstand zwischen Links */
}

nav ul li a {
    font-family: 'Arial', serif; /* Playfair Schriftart */
    text-decoration: none;
    color: #ffffff; /* Heller Text */
    font-size: 16px;
    font-weight: bold;
    padding: 6px 10px;
    transition: color 0.3s ease-in-out;
}

/* Hover-Effekt */
nav ul li a:hover {
    color: #a29bfe; /* Leicht violetter Farbton fÃƒÂ¼r Hover */
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .top-header {
        padding: 6px 15px; /* Noch kompakter auf kleinen Screens */
        height: 45px; /* Kleinere HÃƒÂ¶he fÃƒÂ¼r Smartphones */
    }

    .logo {
        font-size: 18px; /* Kleinere Logo-Schrift auf Mobile */
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 14px;
        padding: 4px 8px;
    }
}

/* Hero Section */
.hero {
    background: url('/images/header-background.jpg') no-repeat center center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
        
    color: white;
    text-align: center;
    padding: 120px 20px;
    border-bottom: 5px solid #211d6d;
}
.hero-content {
    background: rgba(0, 0, 0, 0.2); /* Schwarze Box mit 50% Transparenz */
    padding: 20px; /* Abstand zum Text */
    border-radius: 10px; /* Abgerundete Ecken */
    display: inline-block; /* Box passt sich der TextgrÃ¶ÃŸe an */
}

.hero h1, .hero p {
    color: white; /* WeiÃŸer Text */
    text-shadow: 
        -1px -1px 0 black,  
         1px -1px 0 black,  
        -1px  1px 0 black,  
         1px  1px 0 black; /* Schwarzer Rand */
}

.hero h1 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 18px;
}

/* CTA-Button */
.cta-button {
    background: #512da8;
    color: white;
    padding: 14px 22px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    transition: 0.3s;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0px 0px 15px rgba(81, 45, 168, 0.5);
}

.cta-button:hover {
    background: #311b92;
    transform: scale(1.05);
    box-shadow: 0px 0px 25px rgba(81, 45, 168, 0.8);
}

/* Decision Tools */
.decision-tools {
    text-align: center;
    padding: 60px 20px;
    background: #f4f6fb;
}

.app-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.app-link {
    display: block;
    width: 300px;
    background: white;
    padding: 20px;
    text-decoration: none;
    color: #1a237e;
    border: 2px solid #512da8;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: bold;
}

.app-link:hover {
    box-shadow: 0px 0px 20px rgba(81, 45, 168, 0.3);
    background: #ede7f6;
    transform: translateY(-5px);
    border-color: #311b92;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background: #ffffff;
}

.feature {
    max-width: 300px;
    text-align: center;
    padding: 20px;
    background: #f0f3ff;
    color: #333;
    border-left: 5px solid #512da8;
    transition: 0.3s;
}

.feature h2 {
    color: #1a237e;
    font-size: 22px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-link {
        width: 90%;
    }

    .bottom-footer nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* Fixierter unterer Footer */
.bottom-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0a192f; /* Gleiche Farbe wie Header */
    padding: 8px 0; /* Reduziertes Padding fÃƒÂ¼r kompakte HÃƒÂ¶he */
    box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center; /* Zentriert die Navigation */
    align-items: center;
}

/* Navigation im Footer */
.bottom-footer nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* UL so anpassen, dass Links nebeneinander sind */
.bottom-footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Links bleiben in einer Zeile */
    flex-direction: row; /* Sicherstellen, dass sie in einer Reihe sind */
    justify-content: center;
    align-items: center;
    gap: 15px; /* Abstand zwischen Links */
}

/* Links + Icons */
.bottom-footer nav ul li {
    display: inline-block; /* Stellt sicher, dass die Elemente inline bleiben */
}

/* Link-Styling */
.bottom-footer nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Weniger Abstand zwischen Icon und Text */
    text-decoration: none;
    color: #ffffff;
    font-size: 14px; /* Kleinere Schrift fÃƒÂ¼r kompakte Darstellung */
    font-weight: bold;
    padding: 5px 8px;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Kein Zeilenumbruch der Links */
}

/* Icon Styling */
.bottom-footer nav ul li a i {
    font-size: 18px; /* Kleinere Icons */
}

/* Hover Effekt */
.bottom-footer nav ul li a:hover {
    color: #58a5f0;
    transform: scale(1.05);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .bottom-footer nav ul {
        flex-wrap: nowrap; /* Verhindert UmbrÃƒÂ¼che */
        gap: 8px; /* Weniger Abstand zwischen Links */
    }

    .bottom-footer nav ul li a {
        font-size: 12px; /* Kleinere Schrift fÃƒÂ¼r Smartphones */
        padding: 4px 6px;
    }

    .bottom-footer nav ul li a i {
        font-size: 16px; /* Kleinere Icons fÃƒÂ¼r bessere Anpassung */
    }
}

.container {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    background: rgb(11, 2, 72);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    color: #f0eef1;
    animation: fadeIn 0.6s ease-in-out;
}


/* Anpassung fÃƒÂ¼r den Disclaimer */
.legal {
    background: #f9f9f9;
    padding: 20px;
    margin: 40px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.legal h2 {
    font-size: 18px;
    font-weight: bold;
    color: #1a237e;
    text-align: center;
    margin-bottom: 10px;
}

.legal p {
    margin-bottom: 8px;
    text-align: justify;
}