:root {
    --primary-red: #D32F2F;
    --dark-gray: #212121;
    --medium-gray: #424242;
    --light-gray: #F5F5F5;
    --white: #ffffff;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER & NAVIGATION */
header {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.6rem;
    color: var(--dark-gray);
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary-red);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
    text-transform: uppercase;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-red);
}

.header-btn {
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.header-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.mobile-call {
    display: none;
}

/* HERO SECTION */
.hero {
    padding: 160px 0;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('Chris.nomi.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.4rem;
    max-width: 850px;
    margin: 0 auto 40px;
    color: #f8f9fa;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
    font-weight: 600;
}

/* BEFORE/AFTER SLIDESHOW */
.slideshow-section {
    padding: 80px 0;
    background: var(--white);
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    height: 550px;
    overflow: hidden;
    border: 8px solid var(--dark-gray);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ba-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.ba-slide.active {
    display: flex;
}

.ba-slide img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.ba-tag-overlay {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: var(--primary-red);
    color: white;
    font-weight: 800;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 5;
}

.tag-left {
    left: 10%;
}

.tag-right {
    right: 10%;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 20px;
    margin-top: -30px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    user-select: none;
    background: rgba(0,0,0,0.6);
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

/* FOOTER */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 2000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* CONTENT PAGES */
.page-header {
    background: var(--dark-gray);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.content-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 700;
    font-size: 0.9rem;
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-body {
    padding: 25px;
}

.service-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 600px;
    background: var(--dark-gray);
    color: white;
    padding: 25px;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 12px;
    display: none;
}

#cookie-banner .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.cookie-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

/* FORM STYLES */
.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-red);
    outline: none;
}

.form-group textarea {
    min-height: 200px;
}

/* MOBILE FIXES */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        order: 3;
    }

    .mobile-call {
        display: block;
        order: 2;
        font-size: 1.5rem;
        color: var(--primary-red);
        text-decoration: none;
        margin-right: 15px;
    }

    .logo-link {
        order: 1;
        flex: 1;
    }

    .header-btn {
        display: none;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: 0.4s;
        box-shadow: 10px 0 20px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 40px 20px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 30px;
    }

    nav ul li a {
        font-size: 1.2rem;
        display: block;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--light-gray);
    }

    .info-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero { 
        padding: 80px 0; 
        min-height: 40vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-attachment: scroll; 
        background-size: cover;
        background-position: center 20%; /* Etwas nach oben verschoben, da oben meist die Action ist */
    }

    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.2rem; }
    
    .ba-slider { height: 400px; }

    .ba-tag-overlay {
        font-size: 0.7rem;
        padding: 6px 10px;
        bottom: 10px;
    }

    .tag-left {
        left: 5%;
    }

    .tag-right {
        right: 5%;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    .logo-text { font-size: 1.3rem; }
    .ba-slider { height: 300px; border-width: 4px; }
    
    .content-section { padding: 50px 0; }
    .container { width: 92%; }

    h2 { font-size: 1.7rem; line-height: 1.2; }

    .ba-tag-overlay {
        font-size: 0.55rem;
        padding: 4px 6px;
        bottom: 8px;
    }

    .tag-left {
        left: 2%;
    }

    .tag-right {
        right: 2%;
    }
}
