/* =========================
   RESET & BASIS
========================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.7;
    color: #222;
    background: linear-gradient(180deg, #ffffff, #f2f4f7);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #1a1a1a 0%, #3d3d3d 45%, #373737 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255,255,255,0.08), transparent 60%);
    pointer-events: none;
}

.logo {
    width: 520px;
    margin-bottom: 36px;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-block;
    background: #fffc22;
    color: #000;
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* =========================
   SECTIONS
========================= */
.section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.section.light {
    background: linear-gradient(
        135deg,
        #fffc22 0%,
        #fff36a 50%,
        #FFF07D 100%
    );
}

.section.light::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: inherit;
    z-index: -1;
}

.section h2 {
    font-size: 2.1rem;
    margin-bottom: 25px;
}

.section p {
    max-width: 780px;
    margin: 0 auto 18px;
}

/* =========================
   CARDS
========================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    margin-top: 45px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.card span {
    font-size: 1.6rem;
}

.card:hover {
    background: linear-gradient(135deg, #fffde6, #fffc22);
    transform: translateY(-6px);
}

/* =========================
   BENEFITS
========================= */
.benefits {
    list-style: none;
    margin-top: 30px;
}

.benefits li {
    font-size: 1.1rem;
    margin: 12px 0;
}

/* =========================
   GALERIE
========================= */
.gallery-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    margin-top: 35px;
}

.gallery-track {
    display: flex;
    gap: 22px;
    width: max-content;
}

.gallery-track img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gallery-track img:hover {
    transform: scale(1.06);
}

/* =========================
   KONTAKT
========================= */
.contact-info a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

/* =========================
   MAP
========================= */
.minimap {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.minimap iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #111;
    color: #ffffff;
    padding: 28px 20px;
    text-align: center;
}

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

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .logo {
        width: 320px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 220px;
    }

    .section {
        padding: 60px 15px;
    }
}

/* =========================
   SECTION HEADLINES – GELB
========================= */
.section h2 {
    display: inline-block;
    position: relative;
    padding: 12px 28px;
    margin-bottom: 35px;

    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.4px;

    color: #fffc22;
    background: linear-gradient(
        135deg,
        #585858 0%,
        #000000 100%
    );

    border-radius: 14px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.15),
        inset 0 -2px 0 rgba(0,0,0,0.08);
}
/* =========================
   SECTION HINTERGRÜNDE
========================= */

/* Basis */
.section {
    position: relative;
}

/* 1. Section */
main > section:nth-of-type(1) {
    background: #ffffff;
}

/* 2. Section */
main > section:nth-of-type(2) {
    background: #f6f7f9;
}

/* 3. Section */
main > section:nth-of-type(3) {
    background: #eceff3;
}

/* 4. Section */
main > section:nth-of-type(4) {
    background: #f6f7f9;
}

/* 5. Section */
main > section:nth-of-type(5) {
    background: #e8ebf0;
}

/* volle Breite erzwingen */
main > section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: inherit;
    z-index: -1;
}
