/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-height: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    padding-top: var(--header-height);
}

html {
    scroll-padding-top: var(--header-height);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    height: var(--header-height);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.25rem;
    height: 100%;
}

.logo img {
    max-height: 48px;
    width: auto;
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #D4AF37;
}

/* Hero Section */
#hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--header-height));
    background: url('assets/images/hero.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
    padding: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #D4AF37;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #D4AF37;
    color: #000;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #fff;
}

.hero-image {
    flex: 1;
    display: none;
}

/* Allgemeine Sections */
section {
    padding: 4rem 2rem;
    text-align: center;
}

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #D4AF37;
}

p {
    margin-bottom: 1rem;
}

/* Über mich */
#about {
    background-color: #111;
}

#about .container {
    display: block;
    text-align: left;
}

#about h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 0 0 350px;
}

#about img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Pain Points Section */
.pain-section {
    background-color: #0a0a0a;
    padding: 100px 2rem;
    text-align: center;
}

.pain-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.pain-title::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(to right, transparent, #C8A75A, transparent);
    width: 200px;
    margin: 1rem auto 0;
}

.pain-intro {
    color: #cccccc;
    max-width: 700px;
    margin: 2rem auto 3rem;
    font-size: 1rem;
    line-height: 1.8;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-item {
    background-color: transparent;
    border: 1px solid #C8A75A;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.pain-item:hover {
    box-shadow: 0 0 15px rgba(200, 167, 90, 0.3);
    border-color: #D4AF37;
}

.pain-icon {
    font-size: 2rem;
    color: #C8A75A;
    margin-bottom: 1rem;
}

.pain-item h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.pain-conclusion {
    max-width: 700px;
    margin: 0 auto;
}

.pain-conclusion p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.pain-conclusion p:first-child {
    font-weight: bold;
    color: #D4AF37;
}

/* Leistungen */
#services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: #222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #D4AF37;
}

/* Ablauf */
#process .process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
    background-color: #222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #D4AF37;
}

/* Galerie */
#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

#gallery figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #111;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

#gallery img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#gallery figure:hover img {
    transform: scale(1.08);
}

#gallery figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    text-align: left;
}

/* FAQ */
#faq .faq-item {
    background-color: #222;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: left;
}

#faq h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

/* Kontakt */
#contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#contact label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D4AF37;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
}

#contact button {
    background-color: #D4AF37;
    color: #000;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact button:hover {
    background-color: #fff;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-label input {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

/* Footer */
footer {
    background-color: #111;
    padding: 2rem;
    text-align: center;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

footer li {
    margin: 0 1rem;
}

footer a {
    color: #D4AF37;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.96);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
    }

    #hero {
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #000;

        align-items: flex-start;
        justify-content: center;

        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-content {
        align-items: center;
        justify-content: flex-start;

        width: 100%;
        padding: 0 1rem;
        padding-top: 32vh;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
        font-size: 1rem;
        padding: 0.85rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: #D4AF37;
        line-height: 1.3;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: 1;
        width: 100%;
    }

    #about img {
        margin: 2rem 0 0 0;
    }

    #process .process-steps {
        flex-direction: column;
    }

    #gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Handy Querformat */
@media (max-width: 950px) and (orientation: landscape) {
    #hero {
        height: calc(100svh - var(--header-height));
        min-height: calc(100svh - var(--header-height));

        background-size: auto 120%;
        background-position: center 42%;
        background-repeat: no-repeat;
        background-color: #000;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;
        overflow: hidden;
    }

    .hero-content {
        padding: 0 1rem;
        padding-top: 0;
        justify-content: center;
        align-items: center;
    }

    .cta-button {
        max-width: 280px;
        font-size: 0.85rem;
        padding: 0.65rem 0.9rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    display: none;
}

.cookie-banner p {
    margin-bottom: 1rem;
}

.cookie-banner button {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #D4AF37;
    color: #000;
    border: none;
    cursor: pointer;
}
@media (max-width: 950px) and (orientation: landscape) {
    #hero {
        height: calc(100svh - var(--header-height));
        min-height: calc(100svh - var(--header-height));

        background-size: cover;           /* ← HIER geändert */
        background-position: center center;
        background-repeat: no-repeat;
        background-color: #000;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;
        overflow: hidden;
    }

    .hero-content {
        padding: 0 1rem;
        justify-content: center;
        align-items: center;
    }
}