/* ==========================
   RESET / BASIS
   ========================== */

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

html {
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
}

/* ==========================
   BILDER – RESPONSIVE
   ========================== */

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

/* ==========================
   LINKS
   ========================== */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==========================
   HERO / HEADER
   ========================== */

.hero {
    width: 100%;
    min-height: 100vh;            /* volle Browserhöhe */
    position: relative;
    overflow: hidden;
}

/* Hero-Bild */
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;            /* Bild passt sich Browserformat an */
}

/* Inhalt über dem Bild */
.hero-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

/* ==========================
   CLAIM
   ========================== */

.claim {
    font-size: 2rem;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 3rem;
}

/* ==========================
   KONTAKT
   ========================== */

.contact {
    font-size: 1rem;
}

.contact strong {
    font-weight: 700;
}

/* ==========================
   RESPONSIVE BREAKPOINTS
   ========================== */

@media (max-width: 1024px) {

    .hero-inner {
        padding: 3rem;
    }

    .claim {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {

    .hero-inner {
        padding: 2rem;
    }

    .claim {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .contact {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    .hero {
        min-height: 90vh;
    }

    .claim {
        font-size: 1.2rem;
    }

    .contact {
        font-size: 0.9rem;
    }
}
