/*
Theme Name: CHORios
Author: CHORios Hagen
Description: Individuelles Theme für den Chor CHORios aus Hagen.
Version: 1.0
*/


/* =========================
   GRUNDLAGEN
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #111111;
    font-family: Arial, sans-serif;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    max-width: 1200px;

    margin: 0 auto;

    padding: 22px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.logo {
    text-decoration: none;

    color: #111111;

    font-size: 24px;

    font-weight: 700;

    letter-spacing: 5px;
}

.main-nav {
    display: flex;

    gap: 35px;
}

.main-nav a {
    text-decoration: none;

    color: #111111;

    font-size: 13px;

    letter-spacing: 1.5px;

    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.5;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 120px 30px 80px;
}

.hero-content {
    max-width: 900px;
}

.hero-kicker {
    margin: 0 0 20px;

    color: #e83d9b;

    font-size: 14px;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-size: clamp(70px, 12vw, 170px);

    line-height: 0.9;

    letter-spacing: -6px;

    font-weight: 700;
}

.hero-subtitle {
    margin-top: 35px;

    font-size: 20px;

    letter-spacing: 2px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    border-top: 1px solid #eeeeee;

    padding: 35px 30px;
}

.footer-inner {
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.footer-inner p {
    margin: 0;

    font-size: 13px;

    color: #777777;
}

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a {
    color: #111111;

    text-decoration: none;

    font-size: 13px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .header-inner {
        padding: 18px 20px;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 10px;
    }

    .logo {
        font-size: 18px;

        letter-spacing: 3px;
    }

    .hero {
        padding-left: 20px;

        padding-right: 20px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .footer-inner {
        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

}
