/* 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 */
}

/* 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;
}

/* General Styling */
body {
    font-family: "Arial", sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #39373b, #553862);
    margin: 0;
    padding: 0;
    color: #ffffff;
}

/* Container */
.container {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    color: #333;
    animation: fadeIn 0.6s ease-in-out;
}

/* Header */
h1 {
    font-size: 30px;
    color: #323131;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #444;
}

/* Buttons */
.option-btn, .btn-back, .btn-reset, .btn-home {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.option-btn {
    background: #574b7b;
    color: white;
}

.option-btn:hover {
    background: #3c055e;
    transform: scale(1.05);
}

.btn-back {
    background: #ffa726;
    color: white;
}

.btn-back:hover {
    background: #fb8c00;
}

.btn-reset {
    background: #d32f2f;
    color: white;
}

.btn-reset:hover {
    background: #c62828;
}

.btn-home {
    background: #4CAF50;
    color: white;
    margin-top: 20px;
}

.btn-home:hover {
    background: #45a049;
}

/* Decision Path Styling */
.decision-path-container {
    background: #e3f2fd;
    border-left: 5px solid #0277bd;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.decision-path-title {
    font-size: 18px;
    font-weight: bold;
    color: #01579b;
    margin-bottom: 10px;
}

.decision-path {
    list-style: none;
    padding: 0;
    text-align: left;
}

.decision-path li {
    background: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 6px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.decision-path li::before {
    content: "🔍";
    font-size: 18px;
}

/* Hidden Elements */
.hidden {
    display: none;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 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;
    }
}

/* 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 */
    }
}

a {
    font-size: 10px;
    color: #333333; /* Dunkle Textfarbe */
    text-decoration: none; /* Entfernt die Unterstreichung */
}

a:hover {
    color: #000000; /* Noch dunklere Farbe beim Hover */
    text-decoration: underline; /* Optional: Unterstreichung beim Hover */
}