/* ========================================
   Spirit & Soul - Logo Stylesheet
   ======================================== */

.logo-container {
    position: absolute;
    top: var(--logo-top-spacing);
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0.7; /* 90% Deckkraft - leicht durchscheinend */
}

.logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 10vw, 12rem); /* Größere Schrift */
    line-height: 1;
    user-select: none;
}

.logo .word {
    position: relative;
    /* Vertikaler Gradient von oben nach unten */
    background: linear-gradient(to bottom, #8B00FF, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    z-index: 2;
    display: inline-block;
}

.logo .word.spirit {
    margin-right: -0.15em;
}

.logo .word.soul {
    margin-left: -0.15em;
    /* Soul nach unten versetzt - schließt mit & ab */
    transform: translateY(0.3em);
    /* Soul im Vordergrund vor & */
    z-index: 4;
}

.logo .ampersand {
    position: relative;
    font-size: 2em;
    /* Vertikaler Gradient von oben nach unten */
    background: linear-gradient(to bottom, #8B00FF, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    z-index: 3; /* Zwischen Spirit (z:2) und Soul (z:4) */
    transform: translateY(20%);
    margin: 0 -0.2em;
    filter: drop-shadow(0 10px 20px rgba(139, 0, 255, 0.3));
}

/* Text Shadow Enhancement */
.logo .word,
.logo .ampersand {
    text-shadow: 0 0 30px rgba(139, 0, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-container {
        width: 75%;
    }
    
    .logo {
        font-size: clamp(3.5rem, 9vw, 10rem);
    }
}

@media (max-width: 768px) {
    .logo-container {
        width: 90%;
        top: 6vh;
    }
    
    .logo {
        font-size: clamp(2.5rem, 12vw, 6rem);
    }
    
    .logo .ampersand {
        font-size: 1.8em;
        transform: translateY(15%);
    }
    
    .logo .word.soul {
        transform: translateY(0.25em); /* Etwas weniger Versatz auf Mobile */
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: clamp(2rem, 14vw, 4rem);
    }
    
    .logo .word.soul {
        transform: translateY(0.2em); /* Noch weniger Versatz auf sehr kleinen Screens */
    }
}
