@import url("https://use.typekit.net/ybx7zcl.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "xenera", sans-serif;
}

body {

    background-color: black;
    color: white;
    text-align: center;
    overflow: hidden;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.navigacija {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}


nav {
    position: absolute;
    top: 2em;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 2em;
    border: 2px solid #512b80;
    padding: 10px 30px;
    border-radius: 20px;
    display: inline-block;
    transition: transform 0.5s ease;

}

nav a:hover {
    transform: scale(1.1);
    font-size: 2.2em;
}

.navigacijarazredi {
    position: absolute;
    top: 2em;
    display: flex;
    gap: 20px;
}

.navigacijarazredi a {
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    border: 2px solid #512b80;
    padding: 10px 30px;
    border-radius: 20px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.navigacijarazredi a:hover {
    transform: scale(1.1);
    font-size: 1.7em;
}

.navigacijarazredi .icon {
    font-size: 1.5em;
}

nav .icon {
    font-size: 2em;
}

h1 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-size: 8em;
    font-family: "waldo-black", sans-serif;
    display: inline-block;
    position: relative;
    padding-top: 0.5em;

}

h1::after {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background-color: white;
    margin: 0.1em auto;
    margin-bottom: 0.5em;
}

.naslovirazreda::after {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background-color: white;
    margin: 0.1em auto;
    margin-bottom: 0.5em;
}

.naslovirazreda {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-size: 7em;
    font-family: "waldo-black", sans-serif;
    display: inline-block;
    position: relative;
    padding-top: 0.5em;
}

.tekstrazredi {
    font-size: 1.5em;
}

p {
    font-size: 1.2em;
}

footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.8em;
    width: max-content;
}

.razredi {
    width: 100%;
    font-size: 0.8em;
    text-align: center;
    padding: 30px;
    position: relative;
    bottom: 0;
}

.projekti {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2em;
}

.projekti a {
    text-decoration: none;
    color: white;
    font-size: 2.5em;
    border: 2px solid #512b80;
    padding: 10px 20px;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.projekti a:hover {
    transform: scale(1.1);
    font-size: 1.7em;
}

h2 {
    font-size: 3.5em;
    margin-bottom: 1em;

}

html,
body {
    overflow: auto;
    scroll-behavior: smooth;
}

section {
    padding: 40px 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



@media (max-width: 1024px) {

    nav,
    .navigacijarazredi {
        flex-direction: row;
        align-items: center;
    }

    h1 {
        font-size: 7em;
    }

    p {
        font-size: 1em;
    }

    .naslovirazreda {
        font-size: 7em;
    }

    .tekstrazredi {
        font-size: 1.3em;
    }

    .projekti a {
        font-size: 2em;
    }

    h2 {
        font-size: 3em;
        margin-bottom: 1em;
    }

}

@media (max-width: 768px) {


    nav,
    .navigacijarazredi {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    nav a {
        font-size: 0.8em;
        border-radius: 10px;
    }

    nav a:hover {
        font-size: 1.2em;
    }

    .navigacijarazredi {
        gap: 10px;
    }

    .navigacijarazredi a {
        font-size: 0.8em;
        border-radius: 10px;
        padding: 5px 15px;
    }

    .navigacijarazredi a:hover {
        font-size: 1em;
    }

    .navigacijarazredi .icon {
        font-size: 1em;
    }

    nav .icon {
        font-size: 1em;
    }

    h1 {
        font-size: 5em;
    }

    p {
        font-size: 0.7em;
    }

    .naslovirazreda {
        font-size: 5em;
    }

    h2 {
      
        font-size: 2.5em;
    }

    .tekstrazredi {
        font-size: 0.8em;
    }

    .projekti a {
        font-size: 1.5em;
    }

    section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
}