/* ---------- GENERAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- FONT IMPORT ---------- */
@font-face {
    font-family: 'ImpactCustom';
    src: url('../fonts/Impact.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PlayfairDisplay-Regular';
    src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ---------- BASE TYPO ---------- */
html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'PlayfairDisplay-Regular', serif;
}

h1, h2, h3, h4 {
    font-family: 'ImpactCustom', sans-serif;
}

/* ---------- SEO / ACCESSIBILITY ---------- */
/* Unsichtbarer Text für Screenreader & Suchmaschinen */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ---------- NAVIGATION ---------- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    background: black;
    z-index: 20;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'ImpactCustom', sans-serif;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 1;
}

/* ---------- SECTION 1: LANDING ---------- */
#landing {
    height: 100vh;
    width: 100%;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* zentriert Sub + CUE vertikal */
    align-items: center;       /* zentriert sie horizontal */
    position: relative;
}

.landing-logo {
    display: block;
    max-width: 500px;   /* maximale Breite des Logos */
    width: 60vw;        /* skaliert responsiv mit */
    height: auto;       /* Proportionen behalten */
}

#landing h1 {
    font-size: 12rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#landing .sub {
    position: static;       /* nicht mehr absolut */
    transform: none;
    font-size: 1.5rem;
    margin-bottom: 1rem;    /* fester Abstand zu "CUE" */
    text-align: center;
}

#landing .bottom-right {
    position: absolute;
    bottom: 25px;
    right: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* ---------- SECTION 2: ÜBER UNS ---------- */
#about {
    background: white;
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 80px 60px;
}

#about .text {
    width: 65%;
    line-height: 1.5;
    font-size: 1.05rem;
    font-family: 'PlayfairDisplay-Regular', serif;
}

#about img {
    width: 35%;
    object-fit: cover;
    margin-left: 40px;
}

#about h2 {
    font-size: 3rem;
    font-weight: 900;
    font-family: Impact;
    margin-top: 60px;
}

/* ---------- SECTION 3: ARBEITSFELDER ---------- */
#felder {
    background: black;
    color: white;
    padding: 80px 60px;
}

#felder h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 50px;
}

.felder-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.felder-container img {
    width: 45%;
    display: block;
    object-fit: cover;
}

.felder-text {
    width: 55%;
    line-height: 1.5;
}

.felder-text h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    text-transform: lowercase;
}

/* ---------- SECTION 4: UNSERE WERTE ---------- */
#werte {
    background: white;
    color: black;
    padding: 80px 60px 100px 60px;
    display: flex;
    align-items: flex-start;
}

.werte-text {
    width: 70%;
    line-height: 1.5;
    font-size: 1.0rem;
    font-family: 'PlayfairDisplay-Regular', serif;
}

.werte-heading {
    width: 30%;
    text-align: right;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.werte-heading h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: 0.04em;
}

/* ---------- CONTACT PAGE ---------- */
.top-strip,
.bottom-strip {
    width: 100%;
    height: 60px;
    background: black;
}

/* Überschrift */
#contact {
    padding: 120px 60px 100px 60px;
    background: white;
    min-height: calc(100vh - 120px);
}

#contact h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 4rem;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* Formular */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
}

.contact-form label {
    font-size: 0.9rem;
    font-family: 'PlayfairDisplay-Regular', serif;
    letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid black;
    font-size: 1rem;
    background: white;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #000;
}

/* Button */
.contact-form button {
    padding: 12px 20px;
    background: black;
    color: white;
    border: none;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.contact-form button:hover {
    opacity: 0.8;
}

/* ---------- ARTISTS HEADER (Schwarze Landing-Page) ---------- */
#artists-landing {
    height: 100vh;
    width: 100%;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#artists-landing h1 {
    font-size: 6rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 0.04em;
}

/* ---------- ARTISTS LIST SECTION ---------- */
#artists-list {
    background: white;
    padding: 100px 60px;
}

.artist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 60px;
}

.artist-block {
    background: white;
}

.artist-block img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    margin-bottom: 20px;
}

.artist-info {
    text-align: left;
}

.artist-info h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 2rem;
    margin-bottom: 8px;
}

.artist-info a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.artist-info a:hover {
    opacity: 0.6;
}

/* ---------- IMPRESSUM ---------- */
#impressum {
    background: black;
    color: white;
    padding: 80px 60px 100px 60px;
    font-family: 'PlayfairDisplay-Regular', serif;
}

#impressum .impressum-text {
    max-width: 900px;
}

#impressum h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.impressum-container p {
    font-size: 0.85rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

/* ---------- DATENSCHUTZ / DATENSCHUTZERKLÄRUNG ---------- */
#datenschutz,
#datenschutzerklaerung {
    background: black;
    color: white;
    padding: 80px 60px 100px 60px;
    font-family: 'PlayfairDisplay-Regular', serif;
}

/* Wenn du noch die alte Wrapper-Struktur nutzt, bleibt das hier wirksam */
#datenschutz .datenschutz-text {
    max-width: 900px;
    margin: 0 auto;
}

/* Für die neue HTML-Struktur ohne Wrapper: Inhalt auf 900px begrenzen */
#datenschutzerklaerung > h1,
#datenschutzerklaerung > h2,
#datenschutzerklaerung > h3,
#datenschutzerklaerung > h4,
#datenschutzerklaerung > p,
#datenschutzerklaerung > ul,
#datenschutzerklaerung > ol {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#datenschutz h1,
#datenschutzerklaerung h1 {
    font-family: 'ImpactCustom', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

#datenschutz h2,
#datenschutzerklaerung h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

#datenschutz h3,
#datenschutzerklaerung h3 {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

#datenschutz h4,
#datenschutzerklaerung h4 {
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#datenschutz p,
#datenschutzerklaerung p {
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
    margin-bottom: 0.9rem;
}

/* Listen: sauber eingerückt + zentrierter Textblock */
#datenschutz ul,
#datenschutz ol,
#datenschutzerklaerung ul,
#datenschutzerklaerung ol {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    padding-left: 1.5rem;
}

#datenschutz li,
#datenschutzerklaerung li {
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

#datenschutz a,
#datenschutzerklaerung a {
    color: white;
    text-decoration: underline;
}

#datenschutz a:hover,
#datenschutzerklaerung a:hover {
    opacity: 0.8;
}

/* ---------- FOOTER STRIP ---------- */
.bottom-strip {
    width: 100%;
    height: 80px;
    background: black;
}

/* ---------- FOOTER ---------- */
.cue-footer {
    width: 100%;
    background: black;
    color: white;
    padding: 60px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.cue-footer h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 0.04em;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cue-footer a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.cue-footer a:hover {
    opacity: 0.6;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ========================================================= */
/* ===================== RESPONSIVE ======================== */
/* ========================================================= */

/* ----- bis 900px: Tablet / kleines Laptop ----- */
@media (max-width: 900px) {

    /* Nav kompakter */
    .navbar {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    /* Landing: Typo runter, Sub nicht mehr überlappend */
    #landing h1 {
        font-size: 6rem;
    }

    #landing .sub {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    #landing .bottom-right {
        bottom: 18px;
        right: 18px;
        font-size: 0.8rem;
    }

    /* About untereinander */
    #about {
        flex-direction: column;
        padding: 60px 24px 70px 24px;
    }

    #about .text,
    #about img {
        width: 100%;
        margin-left: 0;
    }

    #about img {
        margin-top: 30px;
    }

    /* Felder untereinander */
    #felder {
        padding: 60px 24px 80px 24px;
    }

    #felder h2 {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .felder-container {
        flex-direction: column;
        gap: 30px;
    }

    .felder-container img,
    .felder-text {
        width: 100%;
    }

    /* Werte: Heading über Text, alles einspaltig */
    #werte {
        flex-direction: column-reverse;
        padding: 60px 24px 80px 24px;
    }

    .werte-heading {
        width: 100%;
        text-align: left;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .werte-heading h2 {
        font-size: 3rem;
    }

    .werte-text {
        width: 100%;
        font-size: 0.95rem;
    }

    /* Kontakt */
    #contact {
        padding: 120px 24px 80px 24px;
    }

    #contact h1 {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    .contact-form {
        width: 100%;
        max-width: 480px;
    }

    /* Artists */
    #artists-landing h1 {
        font-size: 4rem;
        padding: 0 24px;
    }

    #artists-list {
        padding: 70px 24px;
    }

    .artist-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Impressum / Datenschutz */
    #impressum {
        padding: 80px 24px 80px 24px;
    }

    #impressum h3 {
        font-size: 1.2rem;
    }

    #datenschutz,
    #datenschutzerklaerung {
        padding: 80px 24px 80px 24px;
    }

    #datenschutz h1,
    #datenschutzerklaerung h1 {
        font-size: 2.4rem;
    }

    #datenschutz h2,
    #datenschutzerklaerung h2 {
        font-size: 1.4rem;
    }
}

/* ----- bis 600px: Handy ----- */
@media (max-width: 600px) {

    .navbar {
        padding: 14px 16px;
    }

    .nav-links {
        gap: 14px;
    }

    #landing h1 {
        font-size: 3.6rem;
    }

    #felder h2 {
        font-size: 2.4rem;
    }

    .werte-heading h2 {
        font-size: 2.4rem;
    }

    #artists-landing h1 {
        font-size: 3rem;
    }

    #contact h1 {
        font-size: 2.4rem;
    }
}