/* ===========================
   GLOBAL
   =========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* ===========================
   HEADER
   =========================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #156082;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;

    /* sanfter Schatten unter dem Header */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
}

nav {
    position: relative;
    margin-left: auto; /* schiebt Navigation nach rechts */
}

/* Menü-Liste (Desktop) */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: flex-end; /* hält Einträge rechtsbündig */
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px; /* Abstand Icon – Text */
}

.menu li a:hover {
    text-decoration: underline;
}

.menu li a i {
    font-size: 1.1rem;
}

/* Menü-Button (Hamburger) */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #fff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

/* ===========================
   MOBILE NAVIGATION
   =========================== */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;              /* rechtsbündig */
        left: auto;
        top: 60px;             /* unterhalb des Headers */
        width: 240px;          /* Breite des Dropdowns */
        background-color: #156082;
        padding: 15px 20px;
        border-radius: 10px 0 0 10px;
        box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.25);
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu li a {
        justify-content: flex-start;
        text-align: left;
        white-space: nowrap;
    }

    .menu-toggle {
        display: inline-block;
    }
}

/* ===========================
   FILMSTREIFEN
   =========================== */
.filmstreifen {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 1000px;
}

.filmstreifen img {
    width: auto;
    height: 120px;  /* einheitliche Höhe */
    object-fit: cover;
    border: 2px solid #0C445E;
    border-radius: 8px;
}

/* ===========================
   BESCHREIBUNG
   =========================== */
.beschreibung {
    text-align: center;
    margin: 20px auto;
    max-width: 900px;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===========================
   BUTTONS (DB-Inhalte)
   =========================== */
.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px;
}

.info-button {
    border: 2px solid #0C445E;
    color: #0C445E;
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    min-width: 150px;
}

.info-button:hover {
    background-color: #156082;
    color: #fff;
    transform: scale(1.05);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #156082;
    color: #fff;
    text-align: center;
    padding: 10px 0;

    /* sanfter Schatten über dem Footer */
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.25);
}

/* ===========================
   MODAL
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
/*
.modal-content {
    background-color: #fff;
    border: 2px solid #0C445E;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
}
*/

.modal-content {
    background-color: #fff;
    border: 2px solid #0C445E;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;

    /* Neu: Scrollbar & Begrenzung */
    max-height: 80vh;        /* max. 80% der Bildschirmhöhe */
    overflow-y: auto;        /* Scrollbalken bei Bedarf */
}

/* Optional: schöner Scrollbalken (modern) */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #156082;
    border-radius: 4px;
}


.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #156082;
}

/* ===========================
   ÜBERSCHRIFTEN
   =========================== */
h1, h2, h3, h4 {
    color: #156082;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 10px;
    line-height: 1.3;
    padding-left: 15px; /* 🔹 Einrückung nach rechts */
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
    padding-left: 0; /* 🔹 bleibt zentriert, kein Einzug */
}

h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 20px;
}

h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
}

