@font-face {
    font-family: 'Lays Extra Bold';
    src: url('assets/fonts/Lays_ExtraBold_Extended.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html, body, h1, p {
    margin: 0;
    padding: 0;
}

landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    display: flex;
    padding: 0 30px 0 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ed1c24;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}

.logo {
    width: min(30vw, 350px);
    height: auto;
    max-width: 350px;
    /* background: #ed1c24; */
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: 7vw;
    font-family: 'Lays Extra Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
    line-height: 1.1;
    
    
    width: 100%;
    max-width: 100%;
    padding: 0 3vw;
    box-sizing: border-box;
    text-align: center;
}

.date {
    font-size: 9vw;
    font-family: 'Lays Extra Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
    line-height: 1.1;
    
    
    width: 100%;
    max-width: 100%;
    padding: 0 3vw;
    box-sizing: border-box;
    text-align: center;
}

.uskoro {
    font-size: 3vw;
    font-family: 'Lays Extra Bold', sans-serif;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    padding: 0 3vw;
    box-sizing: border-box;
    text-align: center;
    letter-spacing: 0;
    word-spacing: normal;
    font-feature-settings: normal;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
    font-variant-ligatures: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
}

/* "s" i "c" sa diakritikom koristeći custom font */
.uskoro .srpski-char,
h1 .srpski-char {
    font-family: 'Lays Extra Bold', sans-serif !important;
    letter-spacing: 0;
    display: inline-block;
    position: relative;
    margin-right: 0;
    padding-right: 0;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.uskoro .srpski-char::after,
h1 .srpski-char::after {
    content: "ˇ";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(10%);
    font-size: 0.9em;
    line-height: 1;
    font-family: 'Lays Extra Bold', sans-serif !important;
    pointer-events: none;
    font-weight: bold;
}

/* Posebno podešavanje za "č" - diakritik malo desno */
h1 .srpski-char-c::after {
    left: 50% !important;
    transform: translateX(-40%) translateY(7%) !important;
}

@media (max-width: 1600px) {
   
    .date {
        font-size: 8vw;
    }
}

@media (max-width: 470px) {

    h1 {
        font-size: 6vw;
    }

    .date {
        font-size: 7vw;
    }
    
    .uskoro {
        font-kerning: normal;
        letter-spacing: 0;
    }
    
}