/*
==============================================================================
LUVEX THEME - UV KNOWLEDGE PAGE (FINALE VERSION)
==============================================================================
*/

/* ==============================================================================
FIX: Header-Hintergrund auf dieser Seite erzwingen
==============================================================================
*/
body.page-id-uv-technology .site-header {
    background-color: transparent !important;
}

/* ==============================================================================
FIX: Performance & Cursor-Steuerung
==============================================================================
*/
#cursor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
    display: none; 
}

body.custom-cursor-active #cursor-canvas {
    display: block; 
}

body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button {
    cursor: none !important;
}

#spectrum-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ==============================================================================
Hero Section Layout
==============================================================================
*/
.hero-spectrum-engine {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--luvex-dark-blue);
    color: var(--luvex-white);
}

.hero-spectrum-engine::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="hero-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(109, 213, 237, 0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hero-grid)"/></svg>');
    opacity: 0.4; 
    z-index: 2;
}

.wavelength-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 211, 238, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(109, 213, 237, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: 'Courier New', Courier, monospace;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: color 0.4s ease;
    pointer-events: none;
}

.hero-spectrum-engine .luvex-hero__container {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Geändert für neue Abstände */
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 1rem;
    padding-top: 12rem; /* Abstand für den Titel von oben */
}

.hero-content-wrapper {
    width: 100%;
}

.luvex-hero__container .luvex-hero__title {
    margin-bottom: 6rem; /* Großer Abstand zum Subtitle */
}

.hero-spectrum-actions {
    margin-top: 6rem; /* Großer Abstand vom Subtitle */
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.spectrum-action-btn {
    background: rgba(109, 213, 237, 0.1);
    border: 1px solid rgba(109, 213, 237, 0.2);
    color: var(--luvex-bright-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.spectrum-action-btn:hover {
    background: rgba(109, 213, 237, 0.25);
    border-color: var(--luvex-bright-cyan);
    color: var(--luvex-white);
    transform: translateY(-2px);
}
