/* ======== GRUNDEINSTELLUNGEN & VARIABLEN ======== */
:root {
    --color-background: #121212;
    --color-background-darker: #0a0a0a;
    --color-surface: #1e1e1e;
    --color-primary: #c1052f;
    --color-text: #e0e0e0;
    --color-text-darker: #a0a0a0;
    --font-main: 'Montserrat', sans-serif;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======== CUSTOM CURSOR (Optional) ======== */
.custom-cursor {
    display: none;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
        position: fixed;
        width: 20px;
        height: 20px;
        border: 2px solid var(--color-primary);
        border-radius: 50%;
        left: 0;
        top: 0;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
        z-index: 9999;
    }

    a:hover ~ .custom-cursor, button:hover ~ .custom-cursor {
        width: 50px;
        height: 50px;
        background-color: rgba(193, 5, 47, 0.3);
    }
}

/* ======== HEADER & NAVIGATION ======== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

#main-header.scrolled {
    background-color: rgba(18, 18, 18, 0.9);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 20px;
}

.nav-logo img {
    height: 40px;
    transition: transform 0.3s ease;
}
.nav-logo:hover img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ======== HERO SECTION ======== */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://dm-production.de/pics/HEAD.jpg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
}

.hero-content .subtitle {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 300;
    color: var(--color-text);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    color: var(--color-text);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ======== ALLGEMEINE SEKTIONEN ======== */
.content-section {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--color-background-darker);
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 7vw, 2.8rem);
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

/* ======== ABOUT SECTION ======== */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--color-surface);
}

.about-content p {
    flex: 1;
    font-size: 1.1rem;
    color: var(--color-text-darker);
}

/* ======== MUSIC SECTION ======== */
.music-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.music-player h3, .video-showcase h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ======== TOUR SECTION ======== */
.tour-widget-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

/* ======== CONNECT SECTION (LINK HUB) ======== */
.link-hub {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    color: var(--color-text);
    text-decoration: none;
    padding: 15px 25px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.link-button:hover {
    transform: scale(1.03);
    background-color: var(--color-primary);
}

.link-button i {
    margin-right: 15px;
    width: 20px;
}

/* ======== PARTNERS SECTION ======== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-card {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px;
}

.partner-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.partner-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* ======== FOOTER ======== */
#main-footer-bottom {
    background-color: var(--color-background-darker);
    padding: 30px 0;
    text-align: center;
    color: var(--color-text-darker);
}

#main-footer-bottom a {
    color: var(--color-text-darker);
    text-decoration: none;
    transition: color 0.2s ease;
}
#main-footer-bottom a:hover {
    color: var(--color-primary);
}

/* ======== SCROLL ANIMATION ======== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======== MEDIA QUERIES (MOBILE OPTIMIERUNG) ======== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .menu-toggle.active i::before {
        content: '\f00d';
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .music-layout {
        grid-template-columns: 1fr;
    }
}