
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-yellow: #fabc2d;
    --color-yellow-light: #fabc2d;
    --color-yellow-dark: #fabc2d;
    --color-dark-gray: #1a1a1a;
    --color-dark-gray-light: #2d2d2d;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-light-gray: #f8f9fa;
    --color-text: #000000;
    --color-text-light: #000000;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: 'inter', -apple-system, BlinkMacSystemFont, 'roboto', sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(135deg, #f5f7fa 0%, #1f1f1f 100%);
    background-attachment: fixed;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Logo */
.header {
    background: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

    .logo-container:hover {
        transform: scale(1.05);
    }

    .logo-container a {
        display: inline-block;
        text-decoration: none;
    }

.logo-image {
    height: 125px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

    .logo-image:hover {
        opacity: 0.9;
    }

/* Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
    z-index: 1001;
}

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-light));
        border-radius: 3px;
        transition: all 0.3s ease;
    }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-light));
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: var(--color-yellow);
        transform: translateY(-2px);
    }

        .nav-link:hover::before {
            width: 100%;
        }

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
        animation: pulse 8s ease-in-out infinite;
        z-index: 1;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.03) 2px, rgba(255, 215, 0, 0.03) 4px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.95rem;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
        width: 300px;
        height: 300px;
    }

.btn-primary {
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
    color: var(--color-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

    .btn-primary:active {
        transform: translateY(-1px) scale(1.02);
    }

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-dark-gray);
    position: relative;
    font-weight: 800;
    letter-spacing: -1px;
}

    .section-title::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
        border-radius: 2px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-light));
        border-radius: 2px;
    }

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    /* Glas + Overlay */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 6px solid rgba(255, 188, 45, 0.9);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
        transition: left 0.5s;
    }

    .service-card:hover::before {
        left: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: var(--shadow-xl);
        border-color: rgba(255, 215, 0, 0.2);
    }

    /* Überschriften und Text */
    .service-card h3 {
        color: var(--color-yellow-dark);
        margin-bottom: 1rem;
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), -1px 1px 2px rgba(0, 0, 0, 0.6), 1px -1px 2px rgba(0, 0, 0, 0.6), -1px -1px 2px rgba(0, 0, 0, 0.6);
    }

    .service-card p {
        color: var(--color-yellow-dark);
        line-height: 1.8;
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 600px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        background-size: cover;
    }
}

/* 🌟 Individuelle Hintergrundbilder für Service-Cards auf Unterseiten */
/* Hauptuntersuchung */
.page-hauptuntersuchung .services-grid > .service-card {
    background-image: url("image/hu-540x272.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* Bremsen-Service */
.page-bremsen .services-grid > .service-card {
    background-image: url("image/bremse-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* Reifen-Service */
.page-reifen .services-grid > .service-card {
    background-image: url("image/reifen-540x272.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* Klima-Service */
.page-klima .services-grid > .service-card {
    background-image: url("image/klima-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* Achsvermessung */
.page-achsvermessung .services-grid > .service-card {
    background-image: url("image/achsvermessung-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* Unfallinstandsetzung */
.page-unfallinstandsetzung .services-grid > .service-card {
    background-image: url("image/unfallinstandsetzung-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* KFZ-Elektrik/Elektronik */
.page-elektrik .services-grid > .service-card {
    background-image: url("image/elektrik-700x441.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* Motor-Diagnose */
.page-motor .services-grid > .service-card {
    background-image: url("image/motor-480x272.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* Inspektions-Service */
.page-inspektion .services-grid > .service-card {
    background-image: url("image/inspektion-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

/* 🌟 Individuelle Hintergrundbilder für jede der 9 Service-Cards (nur auf Startseite) */
.services-grid .service-card-link:nth-child(1) .service-card {
    background-image: url("image/elektrik-700x441.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

.services-grid .service-card-link:nth-child(2) .service-card {
    background-image: url("image/motor-480x272.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

.services-grid .service-card-link:nth-child(3) .service-card {
    background-image: url("image/inspektion-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

.services-grid .service-card-link:nth-child(4) .service-card {
    background-image: url("image/bremse-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

.services-grid .service-card-link:nth-child(5) .service-card {
    background-image: url("image/hu-540x272.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

.services-grid .service-card-link:nth-child(6) .service-card {
    background-image: url("image/reifen-540x272.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

.services-grid .service-card-link:nth-child(7) .service-card {
    background-image: url("image/klima-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

.services-grid .service-card-link:nth-child(8) .service-card {
    background-image: url("image/achsvermessung-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}

.services-grid .service-card-link:nth-child(9) .service-card {
    background-image: url("image/unfallinstandsetzung-460x295.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(79, 79, 79, 0.5);
    background-blend-mode: overlay;
}





/* About Section */
.about {
    background: linear-gradient(180deg, var(--color-light-gray) 0%, #1f1f1f 100%);
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-text);
    font-weight: 400;
}

.about-subtitle {
    color: var(--color-dark-gray);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

    .about-subtitle:first-of-type {
        margin-top: 0;
    }

    .about-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-light));
        border-radius: 2px;
    }

.about-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 1.5rem;
    border-left: 4px solid var(--color-yellow);
    border-radius: 8px;
    margin: 2.5rem 0 !important;
    font-weight: 500;
    font-style: italic;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-left: 4px solid var(--color-yellow);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

    .feature:hover {
        transform: translateX(5px);
        box-shadow: var(--shadow-md);
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    }

    .feature strong {
        color: var(--color-dark-gray);
        font-weight: 600;
        font-size: 1rem;
    }

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #1f1f1f 0%, var(--color-light-gray) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.contact-info h3 {
    color: var(--color-black);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hours,
.contact-details {
    margin-bottom: 2.5rem;
}

    .hours p,
    .contact-details p {
        margin-bottom: 0.8rem;
        line-height: 1.9;
        font-size: 1.05rem;
    }

    .contact-details a {
        color: var(--color-black);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }

        .contact-details a:hover {
            color: var(--color-yellow-dark);
            text-decoration: underline;
        }

        .contact-details a[href^="tel:"] {
            color: var(--color-black);
        }

            .contact-details a[href^="tel:"]:hover {
                color: var(--color-yellow);
            }

/* Map Container */
.map-container {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--color-yellow), transparent) 1;
}

.map-title {
    text-align: center;
    color: var(--color-black);
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

    .map-wrapper:hover {
        box-shadow: var(--shadow-xl);
        border-color: rgba(255, 215, 0, 0.3);
    }

    .map-wrapper iframe {
        display: block;
        width: 100%;
        height: 450px;
        border: none;
    }

.map-link {
    text-align: center;
    margin-top: 2rem;
}

.contact-form {
    background: rgba(250, 188, 45, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

    .contact-form:hover {
        box-shadow: var(--shadow-xl);
        border-color: rgba(255, 215, 0, 0.2);
    }

.form-group {
    margin-bottom: 1.8rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        color: var(--color-dark-gray);
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.8);
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-yellow);
            box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
            background: rgba(255, 255, 255, 1);
            transform: translateY(-2px);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* Impressum Section */
.impressum {
    background: linear-gradient(180deg, var(--color-light-gray) 0%, #1f1f1f 100%);
    padding: 80px 0;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(250, 188, 45, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 6px solid rgba(31, 31, 31, 0.9);
}

.impressum-item {
    line-height: 2;
}

    .impressum-item h3 {
        color: var(--color-dark-gray);
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
    }

    .impressum-item p {
        margin-bottom: 1rem;
        font-size: 1.05rem;
        color: var(--color-text);
    }

    .impressum-item strong {
        color: var(--color-dark-gray);
        font-weight: 600;
    }

/* Footer */
.footer {
    background: linear-gradient(180deg, #1f1f1f 0%, #1a1a1a 100%);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
    }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-image {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

    .footer-logo-image:hover {
        opacity: 0.9;
    }

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
    }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-yellow);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-yellow);
            transform: translateY(-2px);
        }

            .footer-links a:hover::after {
                width: 100%;
            }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--color-yellow);
    animation: slideUp 0.5s ease-out;
    display: none;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 0; /* Erlaubt Flex-Shrink auf mobilen Geräten */
}

    .cookie-banner-text h4 {
        color: var(--color-yellow);
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .cookie-banner-text p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .cookie-banner-text a {
        color: var(--color-yellow);
        text-decoration: underline;
        transition: color 0.3s ease;
    }

        .cookie-banner-text a:hover {
            color: var(--color-yellow-light);
        }

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

    .cookie-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        padding: 6rem 2rem 2rem;
        transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: var(--shadow-xl);
        justify-content: flex-start;
        gap: 2rem;
        z-index: 9998;
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-image {
        height: 65px;
    }

    .footer-logo-image {
        height: 55px;
    }

    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 15px;
    }

    .cookie-banner-content {
        padding: 0 15px;
    }

    .cookie-banner-text {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    section {
        padding: 60px 0;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        border-width: 4px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner-text {
        width: 100%;
    }

    .cookie-banner-text h4 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

        .cookie-banner-buttons .btn {
            flex: 1;
            min-width: 120px;
            padding: 10px 16px;
            font-size: 0.85rem;
        }

    .logo-image {
        height: 55px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.85rem;
    }
}
/* Weihnachts-Banner – mittig */
.christmas-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 380px;
    width: 100%;
    min-height: 160px;
    /* 🎄 Nur Bild – KEIN roter Verlauf */
    background: url("image/christmas-700x441.jpg") center / cover no-repeat;
    color: #170404;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid #170404;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    overflow: hidden;
}

.christmas-banner.show {
    display: flex;
}

    /* Banner ausblenden */
    .christmas-banner[data-disabled="true"] {
        display: none !important;
    }

/* Text */
.banner-text {
    position: relative;
    z-index: 2;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 2px 2px 9px rgba(250,188,45,0.9);
}

/* Button */
.banner-close {
    position: relative;
    z-index: 2;
    margin-top: 12px;
    padding: 6px 14px;
    background: transparent;
    border: 6px solid #000000;
    box-shadow: 0 0 15px 4px rgba(250,188,45,0.9);
    text-shadow: 1px 1px 2px rgba(163, 26, 35, 0.9);
    color: #fabc2d;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

    .banner-close:hover {
        background: #fabc2d;
        color: #080606;
    }

/* ❄️ Schneefall innerhalb des Banners */
.snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

    /* 10 Schneeflocken als Text-Emojis */
    .snow::before,
    .snow::after {
        content: "❄️ ❄️ ❄️ ❄️ ❄️ ❄️ ❄️ ❄️ ❄️ ❄️";
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        font-size: 40px;
        color: white;
        white-space: nowrap;
        animation: fall 8s linear infinite;
        opacity: 0.8;
    }

    /* zweite Reihe, versetzt für realistischeren Effekt */
    .snow::after {
        animation-delay: 4s;
    }

/* Animation: Flocken fallen von oben nach unten */
@keyframes fall {
    0% {
        transform: translateY(-50px) translateX(0);
    }

    100% {
        transform: translateY(200px) translateX(50px);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .christmas-banner {
        max-width: 90%;
        min-height: 140px;
        padding: 10px 15px;
    }

    .banner-text {
        font-size: 18px;
    }

    .banner-close {
        padding: 5px 12px;
        font-size: 14px;
        border-width: 4px;
    }
}

@media (max-width: 480px) {
    .christmas-banner {
        max-width: 95%;
        min-height: 120px;
        padding: 8px 12px;
    }

    .banner-text {
        font-size: 16px;
    }

    .banner-close {
        padding: 4px 10px;
        font-size: 12px;
        margin-top: 8px;
    }
}





