/* =========================
   RESET & BASICS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: "Georgia", serif;
    color: #eee;
    overflow-x: hidden;
}

/* =========================
   HERO – KÜNSTLER
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: url("img/artist.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* DESKTOP LINKS */
}

/* DUNKLER OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* =========================
   CONTENT
========================= */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin-left: 8vw;
    text-align: left;
    padding: 20px;
}

/* =========================
   TITLE + GHOST LOGO
========================= */
.hero-content h1 {
    position: relative;
    font-size: 36px;
    letter-spacing: 6px;
    margin-bottom: 30px;
}

.hero-content h1::before {
    content: "";
    position: absolute;
    inset: -90px;
    background: url("img/logo_white.png") no-repeat center;
    background-size: 260px;
    opacity: 0.08;
    z-index: -1;
}

/* =========================
   SHOP BUTTON
========================= */
.shop-btn {
    display: inline-block;
    padding: 14px 34px;
    margin-bottom: 30px;
    border: 2px solid #a00000;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    text-align: center;
}

.shop-btn span {
    display: block;
    font-size: 11px;
    color: #aaa;
    margin-top: 6px;
}

/* =========================
   SOCIAL BUTTONS – EINHEITLICH
========================= */
.socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 360px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border: 1px solid #222;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
}

/* Joke Button – gleiche Größe, anderer Look */
.socials .joke {
    border-color: #600;
    color: #b00000;
}


/* =========================
   MOBILE – ZENTRIERT
========================= */
@media (max-width: 768px) {

    .hero {
        justify-content: center;
        background-position: center top;
    }

    .overlay {
        background: rgba(0,0,0,0.45);
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-content h1::before {
        opacity: 0.05;
    }

    .shop-btn {
        display: block;
        margin: 0 auto 30px auto;
        padding: 18px 48px;
    }

    .socials {
        justify-content: center;
    }
}
