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

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;

    background-color: #000;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background-image: url('background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    pointer-events: none;
}

.home-logo {
    position: fixed;
    top: 24px;
    left: 30px;
    z-index: 11;

    display: block;
    width: 150px;
    height: auto;

    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-logo img {
    display: block;
    width: 100%;
    height: auto;

    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.75));
}

.home-logo:hover {
    opacity: 1;
    transform: scale(1.04);
}

.main-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 14px;
}

.main-nav a {
    color: white;
    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;

    padding: 10px 22px;

    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;

    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero,
.social,
.music-videos,
.tickets {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box {
    text-align: center;
    color: white;

    padding: 40px;
    max-width: 700px;

    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;

    backdrop-filter: blur(8px);
}

.content-box h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.content-box p {
    font-size: 18px;
    line-height: 1.5;
}

.link-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.music-link,
.social-link,
.ticket-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 220px;
    padding: 14px 24px;

    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;

    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.music-link:hover,
.social-link:hover,
.ticket-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.65);
}

.spotify-link {
    background: rgba(29, 185, 84, 0.85);
}

.spotify-link:hover {
    background: rgba(29, 185, 84, 1);
}

.deezer-link {
    background: rgba(120, 55, 255, 0.85);
}

.deezer-link:hover {
    background: rgba(120, 55, 255, 1);
}

.apple-link {
    background: rgba(250, 45, 85, 0.85);
}

.apple-link:hover {
    background: rgba(250, 45, 85, 1);
}

.youtube-link {
    background: rgba(255, 0, 0, 0.85);
}

.youtube-link:hover {
    background: rgba(255, 0, 0, 1);
}

.instagram-link {
    background: rgba(225, 48, 108, 0.85);
}

.instagram-link:hover {
    background: rgba(225, 48, 108, 1);
}

.facebook-link {
    background: rgba(24, 119, 242, 0.85);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
}

.tiktok-link {
    background: rgba(0, 0, 0, 0.85);
}

.tiktok-link:hover {
    background: rgba(0, 0, 0, 1);
}

.ticket-link {
    width: auto;
    min-width: 260px;
    background: rgba(190, 40, 255, 0.85);
}

.ticket-link:hover {
    background: rgba(190, 40, 255, 1);
}

/* Mobile Ansicht */
@media (max-width: 700px) {
    body::before {
        background-image: url('background-mobile.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .home-logo {
        width: 96px;
        top: 18px;
        left: 18px;
    }

    .main-nav {
        top: 24px;
        left: auto;
        right: 16px;
        transform: none;

        width: calc(100% - 140px);
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 13px;
        letter-spacing: 0.4px;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .hero,
    .social,
    .music-videos,
    .tickets {
        min-height: 100svh;
        padding: 120px 18px 48px;
    }

    .content-box {
        width: 100%;
        max-width: 360px;
        padding: 28px 20px;

        background: rgba(0, 0, 0, 0.42);
        border-radius: 18px;
    }

    .content-box h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .content-box p {
        font-size: 15px;
        line-height: 1.45;
    }

    .link-grid {
        width: 100%;
        gap: 12px;
        margin-top: 24px;
    }

    .music-link,
    .social-link,
    .ticket-link {
        width: 100%;
        max-width: 280px;
        min-width: 0;
        padding: 13px 18px;

        font-size: 16px;
        letter-spacing: 0.3px;
    }
}

/* Sehr schmale Handys */
@media (max-width: 380px) {
    .home-logo {
        width: 82px;
        top: 16px;
        left: 14px;
    }

    .main-nav {
        top: 20px;
        right: 12px;
        width: calc(100% - 112px);
        gap: 6px;
    }

    .main-nav a {
        font-size: 12px;
        padding: 7px 10px;
    }

    .content-box {
        padding: 24px 16px;
    }

    .content-box h1 {
        font-size: 27px;
    }

    .music-link,
    .social-link,
    .ticket-link {
        font-size: 15px;
        padding: 12px 16px;
    }
}