/* --- CLIENTS PRESENTATION STYLE --- */

/* FONTS 
   Pfad geht einen Ordner hoch (..) in den Haupt-Fonts-Ordner 
*/
@font-face { 
    font-family: 'Lemon Milk'; 
    src: url('../fonts/LemonMilk-Regular.otf') format('opentype'); 
    font-weight: normal; 
}

:root {
    --c-black: #000000;
    --c-beige: #e1ded1;
    --f-text: 'Lemon Milk', sans-serif;
}

/* GLOBAL RESET & FONT APPLY */
* {
    box-sizing: border-box;
}

html, body, input, button, textarea {
    margin: 0; padding: 0; 
    font-family: var(--f-text); /* Hier wird die Font überall erzwungen */
}

body {
    width: 100%; height: 100%;
    overflow: hidden; 
    background-color: var(--c-black);
    color: var(--c-beige);
}

/* SLIDER TRACK */
#slider-track {
    width: 100%; height: 100%;
    transition: transform 1.0s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform; 
}

/* SECTIONS */
.snap-section {
    width: 100vw; height: 100vh;
    position: relative;
    display: flex; justify-content: center; align-items: center;
    overflow: hidden;
}

.snap-section img, .snap-section video {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* NUMMERIERUNG */
.slide-number {
    position: absolute; bottom: 40px; right: 40px;
    font-size: 1.5vw;
    color: var(--c-beige);
    z-index: 10;
    opacity: 0.6;
    mix-blend-mode: difference;
    pointer-events: none;
}

/* --- INTERFACE ELEMENTE (Login & PDF) --- */

/* ACCESS SCREEN */
#access-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--c-black); color: var(--c-beige);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 1000;
}

.access-input {
    background: transparent; border: none; 
    border-bottom: 2px solid var(--c-beige);
    color: var(--c-beige); 
    font-size: 2rem;
    text-align: center; padding: 10px; width: 300px; outline: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.access-input::placeholder { color: #555; }

.error-msg { 
    color: #993b29; margin-top: 20px; 
    opacity: 0; transition: opacity 0.3s; 
    font-size: 0.8rem; letter-spacing: 1px;
}

/* PDF LOADER */
#pdf-loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); color: #e1ded1;
    display: none; justify-content: center; align-items: center;
    flex-direction: column; z-index: 9999;
}
.loader-spinner {
    width: 50px; height: 50px; border: 5px solid #333;
    border-top: 5px solid #e1ded1; border-radius: 50%;
    animation: spin 1s linear infinite; margin-bottom: 20px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* PDF BUTTON */
#pdf-btn {
    position: fixed; bottom: 20px; right: 20px;
    width: 50px; height: 50px; background: rgba(255,255,255,0.1);
    color: #e1ded1; border-radius: 5px; cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s; z-index: 100;
    font-size: 14px; letter-spacing: 1px;
}
#pdf-btn:hover { opacity: 1; background: rgba(255,255,255,0.2); }