body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
p {
    font-size: 1.2em; /* Schriftgröße für alle <p>-Elemente */
    line-height: 1.6; /* Zeilenhöhe für bessere Lesbarkeit */
}
h3 {font-size: 1.6em; /* Schriftgröße für alle <p>-Elemente */
    line-height: 1.6; /* Zeilenhöhe für bessere Lesbarkeit */
    text-decoration: underline;
}

header {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4vh 0;
}

header h1 {
    margin: 0;
    font-size: 3em;
    color: #FFD700; /* Hochwertiges Gold */
    animation: fadeIn 2s;
}

nav {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Z-Index erhöht */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.3s, background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 1.5vh 1.5vh;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

nav .logo-nav {
    width: 10vh;
    display: block;
}

#menu-button {
    display: none;
    background-color: #FFD700;
    border: none;
    cursor: pointer;
    padding: 1vh;
    border-radius: 50%;
    box-shadow: 0 0 1vh #FFD700;
    position: fixed;
    top: 1vh;
    right: 1vh; /* Korrekt positioniert */
    z-index: 1001; /* Z-Index erhöht */
    animation: shake 0.5s infinite;
}

#menu-button img {
    width: 3vh;
    height: 3vh;
}

.nav-links {
    display: flex;
    gap: 2vh;
    justify-content: center;
}

.nav-links a {
    color: #ffd700; /* Hochwertiges Gold */
    padding: 1.4vh 2vh;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    border-radius: 1vh;
    font-size: 1.6em; /* Schriftgröße hinzufügen */
}

.nav-links a:hover {
    background-color: rgba(255, 215, 0, 0.2); /* Leichtes Gold-Highlight */
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 1vh #FFD700;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 10vh; /* Höhe des Headers berücksichtigen */
        right: 0;
        background-color: #222; /* Dunkleres Hintergrund für bessere Lesbarkeit */
        width: 55%; /* Breite der Nav-Liste auf 100% gesetzt */
        height: calc(70vh - 10vh); /* Volle Höhe des Bildschirms abzüglich Header */
        padding: 2vh;
        border-radius: 1.5vh 0 0 1.5vh;
        z-index: 1000; /* Z-Index erhöht */
        transform: translateX(100%); /* Ausgangsposition außerhalb des Bildschirms */
        transition: transform 0.3s ease-out; /* Animation für das Einfahren */
        overflow-y: auto; /* Ermöglicht das Scrollen */
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5); /* Schatten für Tiefenwirkung */
    }

    .nav-links.show {
        transform: translateX(0) !important; /* Einfahren in den sichtbaren Bereich */
        display: flex !important; /* Sichtbar machen */
    }

    .nav-links a {
        background-color: #333; /* Hintergrundfarbe der Links */
        margin-bottom: 1vh; /* Abstand zwischen den Links */
        padding: 2vh; /* Mehr Padding für größere Klickflächen */
        font-size: 2vh; /* Größere Schrift für bessere Lesbarkeit */
        border: 1px solid #FFD700; /* Rand um die Links */
    }

    .nav-links a:hover {
        background-color: rgba(255, 215, 0, 0.3); /* Leichtes Gold-Highlight beim Hover */
        color: #fff;
        transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
    }

    #menu-button {
        display: block !important;
    }

    @keyframes shake {
        0%, 100% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(-0.5vh);
        }
        50% {
            transform: translateX(0.5vh);
        }
        75% {
            transform: translateX(-0.5vh);
        }
    }

    /* Neues CSS für das mobile Logo */
    .logo-mobile {
        display: block;
        width: 10vh;
        margin: 1vh auto;
    }

    /* Verstecke das Desktop-Logo im mobilen Modus */
    .logo-nav {
        display: none;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2vh;
        justify-content: center;
    }

    /* Zeige das Desktop-Logo im Desktop-Modus */
    .logo-nav {
        display: block;
    }

    /* Verstecke das mobile Logo im Desktop-Modus */
    .logo-mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 80%;
        margin: 0 auto;
    }

    .project-img-large {
        width: 70%; /* Adjust for better desktop view */
    }

    .project-img-small {
        width: 30%; /* Adjust for better desktop view */
    }
}

section {
    padding: 6vh 0;
}

section .container {
    background-color: #222;
    padding: 2vh;
    border-radius: 2vh;
    animation: slideIn 1s ease-out;
    margin: 0 2vh; /* Fügt links und rechts einen Abstand hinzu */
}

section h2 {
    color: #FFD700; /* Hochwertiges Gold */
    text-align: center;
    margin-bottom: 2vh;
    position: relative;
}

section h2:after {
    content: "";
    display: block;
    width: 10vh;
    height: 0.3vh;
    background: #FFD700; /* Hochwertiges Gold */
    margin: 1vh auto;
    border-radius: 0.3vh;
}

.profile-img {
    width: 15vh;
    height: 15vh;
    border-radius: 50%;
    display: block;
    margin: 2vh auto;
}

.project, .service {
    margin: 2vh 0;
}

.project img, .service img {
    width: 100%;
    height: auto;
    border-radius: 0.8vh;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.project img:hover, .service img:hover {
    transform: scale(1.05);
}

.project-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1vh;
}

.project-images img {
    flex: 1 1 calc(25% - 1vh);
    max-width: calc(25% - 1vh);
    margin: 0.8vh; /* Fügt Margin um jedes Bild hinzu */
}

.project-img-large {
    width: 80%; /* Vergrößert das erste Bild bei Projekten */
    max-width: 800px; /* Maximale Breite für das erste Bild */
    display: block;
    margin: 0 auto; /* Zentriert das Bild */
}

.project-img-small {
    width: 40%; /* Verkleinert die restlichen Bilder bei Projekten */
    max-width: 300px; /* Maximale Breite für die restlichen Bilder */
    margin: 1vh; /* Fügt Margin um jedes Bild hinzu */
}

.contact-intro {
    color: #FFD700; /* Goldene Schriftfarbe */
    text-align: center;
    margin-bottom: 2vh;
    font-size: 1.4em; /* Schriftgröße für alle <p>-Elemente */
    line-height: 1.4; /* Zeilenhöhe für bessere Lesbarkeit */
}

.contact-intro1 {
    color: #fff; /* Goldene Schriftfarbe */
    text-align: center;
    margin-bottom: 2vh;
    font-size: 1.2em;
}

form {
    display: flex;
    flex-direction: column;
    background-color: #333; /* Dunkler Hintergrund für das Formular */
    padding: 3vh 2vh;
    border-radius: 2vh;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
}

label {
    margin-top: 1vh;
    color: #FFD700; /* Goldene Schriftfarbe */
    font-weight: bold;
    font-size: 1.2em; /* Größere Schriftgröße */
}

input, textarea {
    padding: 1.5vh;
    margin-top: 0.5vh;
    border-radius: 0.5vh;
    border: 0.1vh solid #FFD700; /* Goldener Rahmen */
    background-color: #222; /* Hintergrundfarbe */
    color: #FFD700; /* Goldene Schriftfarbe */
    font-size: 1.2em; /* Größere Schriftgröße */
}

input:focus, textarea:focus {
    border-color: #FFD700; /* Goldener Rahmen bei Fokus */
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); /* Leichter Schein bei Fokus */
    outline: none; /* Entfernt den Standardfokus */
}

button, .kontakt-button {
    background-color: #FFD700; /* Goldene Hintergrundfarbe */
    color: #000; /* Schwarze Schriftfarbe */
    border: none;
    padding: 1.5vh 2.5vh;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.8vh;
    margin: 1.5vh 0;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 0.5vh;
}

button:hover, .kontakt-button:hover {
    background-color: #b8860b; /* Dunkleres Gold */
    transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
}

.pulsating-button {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer Styles */
footer {
    background-color: #111;
    color: #fff;
    padding: 4vh 0;
    text-align: center;
    border-top: 0.1vh solid #FFD700;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2vh 0;
}

.footer-section {
    flex: 1 1 200px;
    margin: 1vh 2vh;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 10vh;
    margin-bottom: 0 1vh;
}

.footer-section h3, .footer-section h4 {
    color: #FFD700;
    margin-bottom: 1vh;
    font-size: 1.6em; /* Größere Schriftgröße */
}

.footer-section p, .footer-section a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 1vh;
    font-size: 1.2em; /* Größere Schriftgröße */
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-divider {
    height: 50px;
    width: 1px;
    background-color: #FFD700;
    margin: 0 20px;
}

.social-media {
    list-style: none;
    padding: 0;
}

.social-media li {
    display: inline-block;
    margin: 0 1vh;
}

.social-media img {
    width: 6vh; /* Kleinere Social Media Icons */
    height: 6vh;
}

.footer-bottom {
    border-top: 1px solid #FFD700;
    padding: 1vh 0;
    margin-top: 2vh;
}

@media (max-width: 768px) {
   
   
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 2vh;
    
    }

    .footer-divider {
        display: none;
    }

    .footer-logo {
        margin-bottom: 2vh;
    }
}

/* Angebot-Section Styles */
.angebot {
    text-align: center;
}

.angebot-gif {
    width: 100%;
    height: auto;
    max-width: 20%; /* Kleinere maximale Breite auf Desktop */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Hochwertiger Schatteneffekt */
    transition: transform 0.3s, box-shadow 0.3s; /* Animation für den Hover-Effekt */
    border-radius: 10px; /* Leichte Abrundung der Ecken */
}

.angebot-gif:hover {
    transform: scale(1.02); /* Leichte Vergrößerung beim Hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7); /* Stärkerer Schatten beim Hover */
}

.angebot-button {
    background-color: #FFD700; /* Goldene Hintergrundfarbe */
    color: #000; /* Schwarze Schriftfarbe */
    border: none;
    padding: 1.5vh 2.5vh; /* Größeres Padding */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.8vh; /* Größere Schriftgröße */
    margin: 1.5vh 0;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 0.5vh;
}

.angebot-button:hover {
    background-color: #b8860b; /* Dunkleres Gold */
    transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
}

@media (max-width: 768px) {
    .angebot-gif {
        max-width: 70%; /* Größere maximale Breite auf mobilen Geräten */
    }
}

/* Disclaimer Styles */
.disclaimer {
    text-align: center;
    margin: 20px 0;
    font-size: 1.2em;
    color: #FFD700;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3;
    padding-top: 6vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    height: 90%;
    max-width: 90vh;
    max-height: 90vh;
    object-fit: contain;
    border: 5px solid #FFD700; /* Goldene Umrandung */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Weißer Schatten */
    transition: transform 0.3s; /* Animation für das Zoomen */
}

.close {
    position: absolute;
    top: 10vh; /* Verändert die Position nach unten */
    right: 3.5vh; /* Verändert die Position nach links */
    color: #fff;
    font-size: 8vh;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 2vh;
    box-sizing: border-box;
}

.prev, .next {
    cursor: pointer;
    font-size: 3vh;
    color: #fff;
    transition: 0.3s;
}

.prev:hover, .next:hover {
    color: #bbb;
}

/* Cookie Banner Styles */
.cookie-banner {
    background-color: rgba(17, 17, 17, 0.95); /* Fast schwarze Hintergrundfarbe mit etwas Transparenz */
    color: #FFD700; /* Goldene Schriftfarbe */
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1vh 2vh;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-top: 2px solid #FFD700; /* Goldene Oberkante */
    border-radius: 10px 10px 0 0; /* Abgerundete obere Ecken */
    font-size: 1.2em; /* Größere Schriftgröße */
}

.cookie-banner p, .cookie-banner a {
    color: #FFD700;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

#accept-cookies {
    background-color: #FFD700; /* Goldfarbe */
    border: none;
    padding: 1vh 2vh;
    margin-left: 10px;
    cursor: pointer;
    font-size: 1em; /* Größere Schriftgröße */
    border-radius: 5px; /* Abgerundete Ecken */
    transition: background-color 0.3s;
}

#accept-cookies:hover {
    background-color: #b8860b; /* Dunkleres Gold bei Hover */
}

@media (max-width: 768px) {
    .cookie-banner {
        font-size: 1em; /* Kleinere Schriftgröße für mobile Geräte */
        padding: 2vh 1vh; /* Mehr Padding für mobile Geräte */
    }

    #accept-cookies {
        padding: 1.2vh 2vh; /* Mehr Padding für den Button auf mobilen Geräten */
        font-size: 0.9em; /* Kleinere Schriftgröße des Buttons anpassen */
    }
}
