/* Allgemeine Stile */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black; /* Hintergrund schwarz */
    color: white; /* Textfarbe auf weiß setzen */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Damit der Footer immer am unteren Ende der Seite bleibt */
    height: 100%;
}

/* Über Mich Section */
#about {
    color: white; /* Sicherstellen, dass der Text weiß ist */
    margin: 20px;
    padding: 20px;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: black; /* Hintergrund schwarz */
}

.portfolio-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
}

.hero-logo {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    padding: 20px;
    width: 800px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
}

.hero-logo img {
    width: 100%;
    height: auto;
    max-width: 800px;
    image-rendering: optimizeQuality;
}

/* Footer */
footer {
    background-color: #111; /* Footer Hintergrundfarbe */
    color: white; /* Schriftfarbe im Footer auf weiß setzen */
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Footer immer nach unten */
    position: relative;
}

footer .footer-container ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer .footer-container li {
    font-size: 14px;
}

footer .footer-container a {
    color: white;
    text-decoration: none;
    font-weight: normal;
}

footer .footer-container a:hover {
    text-decoration: underline;
}

/* Media Queries für verschiedene Bildschirmgrößen */
@media (max-width: 480px) {
    .hero-logo {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        width: 80%;
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        width: 800px;
    }
}
