/* Globale Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Menü Styles */
.menu {
    position: fixed;
    top: 20px;  /* Abstand von oben */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);  /* Durchsichtiger Hintergrund */
    padding: 10px 0;
    z-index: 10;
    border-radius: 10px;  /* Optional: Abgerundete Ecken für das Menü */
}

.menu ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.menu li {
    margin: 0 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: block;
    transition: background-color 0.3s, color 0.3s;  /* Sanfte Übergänge für die Effekte */
}

/* Effekte für Hover und Klick */
.menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);  /* Hellerer Hintergrund beim Hover */
    color: #f39c12;  /* Farbe der Schrift beim Hover */
    border-radius: 5px;  /* Abgerundete Ecken beim Hover */
}

.menu a:active {
    background-color: rgba(255, 255, 255, 0.4);  /* Hellerer Hintergrund beim Klicken */
    color: #f39c12;  /* Schriftfarbe beim Klicken */
}

.slider-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Slider Styles */
.slider {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 300%;  /* Stellt sicher, dass die Slides nebeneinander passen */
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content {
    position: absolute;
    top: 10%;
    left: 10%;
    color: white;
    z-index: 2;
}

.text-content h1 {
    font-size: 40px;
}

.text-content p {
    font-size: 18px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 100;
}

.copyright {
    color: white;
}


/* Pop-up Styles */
.popup {
    display: none;  /* Popup ist standardmäßig unsichtbar */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);  /* Halbdurchsichtiger Hintergrund */
    justify-content: center;
    align-items: center;
    z-index: 200;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

.popup .close-btn:hover {
    color: #f39c12;
}

/* Footer Links */
.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #f39c12;
}

.footer-links a:active {
    color: #f39c12;
}


@media (max-width: 768px) {
    .menu ul_ {
        flex-direction: column;
    }

    .text-content h1 {
        font-size: 30px;
    }

    .text-content p {
        font-size: 16px;
    }
}
