/* =========================================================
   BASIS
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #fff;
}


/* =========================================================
   STARTSEITE / HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.32)
        ),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navigation {
    width: min(1040px, calc(100% - 48px));
    height: 72px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 10;
}

.logo {
    color: #fff;
    text-decoration: none;

    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;

    font-size: 0.86rem;
    font-weight: 400;

    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.65;
}


/* =========================================================
   HERO-INHALT
   ========================================================= */

.hero-content {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding:
        40px
        24px
        110px;
}

.hero-content h1 {
    margin-bottom: 16px;

    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 600;
    line-height: 1.05;

    letter-spacing: -0.025em;

    text-shadow:
        0 2px 14px rgba(0, 0, 0, 0.22);
}

.hero-content p {
    margin-bottom: 30px;

    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.9);

    text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.3);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.button {
    min-width: 176px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    border-radius: 2px;

    text-decoration: none;

    font-size: 0.88rem;
    font-weight: 400;

    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.button-primary {
    background: #fff;
    color: #111;

    border: 1px solid #fff;
}

.button-primary:hover {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(255, 255, 255, 0.86);
}

.button-secondary {
    background: rgba(0, 0, 0, 0.12);

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
    background: #fff;
    color: #111;

    border-color: #fff;
}


/* =========================================================
   FOOTER AUF DER STARTSEITE
   ========================================================= */

.footer {
    position: absolute;

    bottom: 22px;
    left: 0;

    width: 100%;

    text-align: center;

    z-index: 10;
}

.footer a {
    color: rgba(255, 255, 255, 0.62);

    text-decoration: none;

    font-size: 0.76rem;
    font-weight: 400;

    transition: color 0.2s ease;
}

.footer a:hover {
    color: #fff;
}


/* =========================================================
   IMPRESSUM / RECHTLICHE SEITEN
   ========================================================= */

.legal-page {
    min-height: 100vh;

    background: #f3f3f1;
    color: #222;
}

.legal-content {
    width: min(720px, calc(100% - 40px));

    margin: 0 auto;

    padding: 72px 0 110px;
}

.legal-back {
    display: inline-block;

    margin-bottom: 52px;

    color: #666;
    text-decoration: none;

    font-size: 0.9rem;

    transition: color 0.2s ease;
}

.legal-back:hover {
    color: #111;
}

.legal-content h1 {
    margin-bottom: 48px;

    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;

    letter-spacing: -0.025em;
}

.legal-content h2 {
    margin-top: 34px;
    margin-bottom: 10px;

    font-size: 1rem;
    font-weight: 600;

    color: #222;
}

.legal-content p {
    font-size: 0.98rem;
    line-height: 1.7;

    color: #4c4c4c;
}

.legal-content a {
    color: #222;

    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .navigation {
        width: calc(100% - 36px);
        height: 68px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding:
            30px
            20px
            105px;
    }

    .hero-content h1 {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }

    .hero-content p {
        max-width: 320px;
    }

    .hero-buttons {
        width: min(320px, 100%);

        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .footer {
        bottom: 18px;
    }

    .legal-content {
        width: calc(100% - 36px);

        padding-top: 50px;
    }

    .legal-back {
        margin-bottom: 38px;
    }

    .legal-content h1 {
        margin-bottom: 38px;
    }
}

/* =========================================================
   ASTROFOTOGRAFIE
   ========================================================= */

.astro-page {
    min-height: 100vh;
    min-height: 100svh;

    color: #fff;

    background:
        url("images/astro-hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.astro-content {
    width: min(900px, calc(100% - 40px));
    min-height: 100vh;

    margin: 0 auto;
    padding: 55px 0;

    display: flex;
    flex-direction: column;
}

.astro-back {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;

    font-size: 0.9rem;

    transition: color 0.2s ease;
}

.astro-back:hover {
    color: #fff;
}

.astro-box {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    text-align: center;

    padding-bottom: 85px;
}

.astro-box h1 {
    margin-bottom: 18px;

    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;

    letter-spacing: -0.025em;

    text-shadow:
        0 2px 14px rgba(0, 0, 0, 0.35);
}

.astro-box p {
    margin-bottom: 32px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1.1rem;
    line-height: 1.6;

    text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.35);
}

.astro-button {
    display: inline-block;

    padding: 15px 28px;

    background: #fff;
    color: #111;

    border: 1px solid #fff;
    border-radius: 2px;

    text-decoration: none;

    font-size: 0.95rem;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.astro-button:hover {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(255, 255, 255, 0.86);
}


/* MOBILE */

@media (max-width: 760px) {

    .navigation {
        width: calc(100% - 32px);
        height: auto;

        padding-top: 20px;

        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 20px;

        width: 100%;
    }

    .nav-links a {
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .hero-content {
        padding:
            40px
            20px
            105px;
    }

    .hero-content h1 {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }

    .hero-content p {
        max-width: 320px;
    }

    .hero-buttons {
        width: min(320px, 100%);
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .footer {
        bottom: 18px;
    }

    .legal-content {
        width: calc(100% - 36px);
        padding-top: 50px;
    }

    .legal-back {
        margin-bottom: 38px;
    }

    .legal-content h1 {
        margin-bottom: 38px;
    }
}

/* =========================================================
   KONTAKT
   ========================================================= */

.contact-page {
    min-height: 100vh;

    background: #111;
    color: #fff;
}

.contact-content {
    width: min(900px, calc(100% - 40px));
    min-height: 100vh;

    margin: 0 auto;
    padding: 55px 0;

    display: flex;
    flex-direction: column;
}

.contact-back {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;

    font-size: 0.9rem;

    transition: color 0.2s ease;
}

.contact-back:hover {
    color: #fff;
}

.contact-box {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding-bottom: 70px;
}

.contact-box h1 {
    margin-bottom: 24px;

    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;

    letter-spacing: -0.025em;
}

.contact-box p {
    max-width: 520px;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 25px;

    padding: 15px 28px;

    background: #fff;
    color: #111;

    border: 1px solid #fff;
    border-radius: 3px;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 500;

    transition: background 0.2s ease;
}

.contact-button:hover {
    background: #e8e8e8;
}

.contact-note {
    margin-top: 20px !important;

    color: rgba(255, 255, 255, 0.45) !important;

    font-size: 0.82rem !important;
}


/* MOBILE */

@media (max-width: 760px) {

    .contact-content {
        width: calc(100% - 36px);
        padding-top: 35px;
    }

    .contact-box {
        padding-bottom: 40px;
    }

    .contact-button {
        width: 100%;
        max-width: 330px;
    }
}

.contact-email {
    margin-top: 12px !important;
}

.contact-email a {
    color: #fff;
    text-decoration: none;

    font-size: 1.2rem;
    font-weight: 500;
}

.contact-email a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}