/* haupt.css */

body {
    background-color: rgba(0, 0, 0, 0.7);
        font-family: "Montserrat", sans-serif;

}

/* HAUPT */
/* Banner */
        .banner {
        position: relative; /* für absolute Positionierung des Buttons */
        background-image: url("BILDER/BANNER/MS__1358.jpg");
        background-size: cover;
        background-position: center;
        margin-bottom: 10px;
        height: 300px;
        /* Entferne flexbox, da wir absolute Position nutzen */
    }

/* BANNERTEXT */
        .banner-text {
        position: absolute;
        top: 20px;
        left: 20px;
        bottom: 20px;
        padding: 12px 24px;

        font-size: 18px;
        cursor: pointer;
        border: none;
        background-color: rgba(200,200,200,0.3);
        color: white;
        border-radius: 8px;
        max-width: 400px;
        text-align: center;
     }
 /* Ende Bannertext */

    .impressum-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: medium;    cursor: pointer;
    border: none;
    background-color: rgba(0,0,0,0.6);
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
    .impressum-button:hover {
        background-color: rgba(0,0,0,0.8);
    }

    /* Popup Overlay */
    .popup-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    .popup-content {
        background: white;
        padding: 20px 30px;
        border-radius: 8px;
        max-width: 400px;
        text-align: center;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }
    .popup-close {
        margin-top: 15px;
        padding: 8px 16px;
        cursor: pointer;
        background-color: #0078d7;
        color: white;
        border: none;
        border-radius: 4px;
    }
    .popup-close:hover {
        background-color: #005a9e;
    }

 /* ENDE Banner */

/* Footer */
    footer {
        background-color: #333;
        color: white;
        text-align: center;
        padding: 20px 0;
        position: fixed; /* Optional: fixiert den Footer unten */
        bottom: 0;
        width: 100%;
        font-family: Arial, sans-serif;
    }