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


/* ======================================================
   RESET & BASIS
====================================================== */
* {
    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 (ROT AUF SCHWARZ)
====================================================== */
.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;
}


/* ======================================================
   HERO IMAGE
====================================================== */
.center-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}


/* ======================================================
   CONTENT BLOCK
====================================================== */
.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 (OVERLAY)
====================================================== */
.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;
    padding: 0;

    cursor: pointer;
    pointer-events: auto;
}

.music-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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


/* ======================================================
   SLIDE 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 (ANIMATION)
====================================================== */
.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); }
}


/* ======================================================
   COMIC LINK
====================================================== */
.comic-link {
    font-family: 'CookGothif', Arial Black, sans-serif;
    text-transform: uppercase;

    color: red;
    text-decoration: none;
    font-size: 20px;
}

.comic-link:hover {
    color: #fff;
}