/* ================= Base & Variables ================= */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-regular.woff2') format('woff2'),
         url('../fonts/montserrat-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
         url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary-gold: #cba052; /* Metallic Gold/Copper from image */
    --primary-gold-hover: #e0b870;
    --bg-dark: #0f0f11;
    --bg-card: #1a1a1c;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-color: #333;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-gold-hover);
}

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

/* ================= Typography ================= */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

h1 { font-size: 3rem; text-transform: uppercase; letter-spacing: 2px;}
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; color: var(--primary-gold); }

/* ================= Buttons ================= */
.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* ================= Header & Navigation ================= */
header {
    background-color: rgba(15, 15, 17, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    height: 50px; /* Adjust based on your logo.png dimensions */
    object-fit: contain;
}

nav .nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.nav-links li a.active, 
.nav-links li a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-gold);
}

/* ================= Hero Slider ================= */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    max-width: 800px;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* ================= Startseite Features ================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 20;
    padding-bottom: 60px;
}

.feature-box {
    background: var(--bg-card);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.feature-box.highlight {
    background: linear-gradient(145deg, #1f1a0f, var(--bg-card));
    border-color: var(--primary-gold);
}

/* ================= General Intro ================= */
.intro {
    padding: 60px 20px;
    max-width: 800px;
}

.intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ================= Page Headers ================= */
.page-header {
    margin-top: 80px;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('../img/slide1.jpg') center/cover;
    border-bottom: 2px solid var(--primary-gold);
}

/* ================= Service Grid ================= */
.services-page {
    padding: 60px 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.service-img {
    height: 220px;
    width: 100%;
    background-color: #222; /* Fallback for missing images */
}

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

.service-text {
    padding: 30px;
}

.service-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.check-list li {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* ================= Contact Page ================= */
.contact-page {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    max-width: 800px;
    width: 100%;
}

.contact-info-box {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid var(--primary-gold);
    text-align: center;
}

.contact-info-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(203, 160, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-promise {
    background: #111;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.contact-promise .check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    margin-top: 20px;
}

/* ================= Footer ================= */
footer {
    background-color: #050505;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-info p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-contact h4 {
    color: var(--primary-gold);
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-gold);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    background: #000;
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        background: var(--bg-card);
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transform: translateY(-200%);
        transition: transform 0.3s ease-in;
        border-bottom: 1px solid var(--primary-gold);
        z-index: -1;
    }

    .nav-links.nav-active {
        transform: translateY(0);
        z-index: 999;
    }

    .hamburger {
        display: block;
    }

    h1 { font-size: 2rem; }
    
    .hero-slider {
        margin-top: 80px;
        min-height: 500px;
    }

    .features {
        margin-top: 20px;
    }

    .contact-info-box {
        padding: 30px 15px;
    }
}
/* ================= Smooth Scrolling ================= */
html {
    scroll-behavior: smooth;
}

/* ================= Dienstleistungen Sektion (Startseite) ================= */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 0 auto;
}

/* ================= Warum Wir? (Why Choose Us) ================= */
.why-us {
    padding: 100px 0;
    background-color: #080809; /* Etwas dunkler als der Haupt-Hintergrund für Kontrast */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-box {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.why-box:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.why-box .icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(203, 160, 82, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-gold);
    font-size: 2rem;
    transition: background 0.3s, color 0.3s;
}

.why-box:hover .icon-circle {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.why-box h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= Floating WhatsApp Button ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
/* ================= Legal Styles Additions ================= */
.legal-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary-gold);
    padding: 15px;
    margin: 30px 0;
    text-align: left;
    border-radius: 0 4px 4px 0;
}

.legal-notice a {
    color: var(--primary-gold);
}

.legal-links {
    margin-top: 10px;
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--text-muted);
    margin: 0 10px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-gold);
}

/* Anpassungen für reine Text-Seiten (Impressum & Datenschutz) */
.text-page h2 {
    font-size: 1.8rem;
    margin-top: 30px;
}

.text-page h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.text-page p {
    margin-bottom: 15px;
    color: var(--text-muted);
}
/* ================= Bewertungen (Reviews) ================= */
.reviews-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stars {
    color: var(--primary-gold); /* Nutzt dein definiertes Gold/Kupfer */
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1; /* Drückt die Info des Bewerters nach unten */
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(203, 160, 82, 0.1);
    color: var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    margin-bottom: 2px;
    font-size: 1.1rem;
    color: #fff;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}