/* -----------------------------------------------------
   FONT
----------------------------------------------------- */
@font-face {
    font-family: "Pakenham";
    src: url("fonts/pakenham.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* -----------------------------------------------------
   GLOBAL SETTINGS
----------------------------------------------------- */
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: "Pakenham", sans-serif;
    cursor: default;
}

/* Pozadí v samostatné vrstvě – nejplynulejší mobilní řešení */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/maintenance/maintenance_background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Wrapper, který se scrolluje */
.scroll-wrapper {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* -----------------------------------------------------
   TYPOGRAPHY
----------------------------------------------------- */

.nadpis {
    font-size: clamp(4rem, 8vw, 8rem);
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.83);
    line-height: 1;

    opacity: 0;
    animation: fadeUp 0.9s ease-out 0.3s forwards;
}

.nadpis2 {
    font-size: clamp(2rem, 4vw, 4rem);
    color: white;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0,0,0,0.83);
    line-height: 1;
}

.podnadpis {
    font-size: clamp(2rem, 4vw, 4rem);
    color: #fb0800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.83);
    text-align: center;
    line-height: 1;

    opacity: 0;
    animation: fadeUp 0.9s ease-out 0.5s forwards;
}
.podnadpis2 {
    font-size: clamp(1.6rem, 3vw, 3rem);
    color: #fb0800;
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.83);
    text-align: left;
    line-height: 1;
}

/* -----------------------------------------------------
   LOGO
----------------------------------------------------- */
.logo img {
    max-width: clamp(12rem, 22vw, 18rem);
    height: auto;
    display: block;
    animation: popIn 0.8s ease-out forwards;
}

/* -----------------------------------------------------
   LAYOUT BOXES
----------------------------------------------------- */

.box {
    height: 100vh;
}

.box2 {
    height: 100vh;
    padding: 0 3rem;
    display: block;
}

/* -----------------------------------------------------
   CUSTOM BULLETS
----------------------------------------------------- */

.moje-odrazky {
    list-style: none;
    padding-left: 1.2rem;
    margin: 0;
    text-align: left;
}


/* ANIMACE */

/* Fade-in + slide-up */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in + scale (pro logo) */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade-in pro spodní sekci */
@keyframes fadeSection {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* fade jednotlivých li */
@keyframes listFade {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo img, .nadpis, .podnadpis {
    will-change: transform, opacity;
}

