/* ===== Fonts ===== */
@font-face {
    font-family: 'CookGothif';
    src: url('CookGothif.otf') format('opentype');
}

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

html, body {
    height: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* ===== Scroll Container ===== */
.sections-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

/* ===== Scrollbar ===== */
.sections-container::-webkit-scrollbar {
    width: 6px;
}
.sections-container::-webkit-scrollbar-track {
    background: #000;
}
.sections-container::-webkit-scrollbar-thumb {
    background: red;
}
.sections-container::-webkit-scrollbar-button {
    background: red;
}

/* ===== Sections ===== */
.section {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.center-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* ===== Content ===== */
.content {
    max-width: 700px;
    padding: 20px;
}

h1 {
    font-family: 'CookGothif', Arial Black, sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}

p {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* ===== UI Layer ===== */
.ui-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
}

/* ===== Music Toggle ===== */
#music-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    padding: 0;
}

.music-flex {
    display: flex;
    align-items: center;      /* Icon + Text vertikal zentriert */
    gap: 10px;
}

.music-flex svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: #fff;
}

.music-label {
    font-family: 'CookGothif', Arial Black, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    line-height: normal;
    margin: 0;
    color: white;
}

/* ===== Indicators ===== */
#slide-indicators {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: auto;
}

.indicator {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.indicator.active {
    background: #fff;
}

.indicator:hover {
    transform: scale(1.2);
}

/* ===== Down Icon ===== */
.down-icon {
    position: absolute;
    bottom: 30px;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

.down-icon svg {
    fill: #fff;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
