/* Resetovanje osnovnih stilova */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; /* Postavlja visinu tela na 100% ekrana */
    margin: 0;
    display: flex;
    flex-direction: column; /* Vertikalni raspored: header, main, footer */
}

/* Body stil */
body {
    font-family: Arial, sans-serif;
    padding-top: 130px; /* Razmak od vrha stranice za header */
    display: flex;
    flex-direction: column;
}

/* Heder u beloj boji */
header {
    background-color: white; /* Bela pozadina za header */
    color: #89cced; /* Ovaj stil može ostati ili promeniti, zavisno od boje teksta */
    padding: 10px 0;
    position: fixed; /* Postavlja header na vrh ekrana */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10; /* Osigurava da header bude iznad drugih elemenata */
    border-bottom: 10px solid #2980b9; /* Linija ispod hedera */
}

/* Raspored u header-u */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Logo */
.logo img {
    max-height: 120px; /* Povećana visina logotipa */
    width: auto;
    border-radius: 5px;
    border: 3px solid white; /* Okvir oko loga */
    padding: 5px;
}

/* Navigacija */
.navigation {
    display: flex; /* Za velike ekrane, navigacija je horizontalna */
    list-style: none;
    z-index: 20;
}

/* Dugme za zatvaranje menija */
.close-btn {
    display: none; /* Po defaultu, dugme je skriveno */
    font-size: 30px;
    color: #2980b9;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 30;
}

/* Kada je meni otvoren, dugme postaje vidljivo */
.navigation.open .close-btn {
    display: block;
}

/* Navigacija za desktop */
.navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation ul li {
    margin-left: 20px;
}

/* Slova u meniju */
.navigation ul li a {
    color: #2980b9;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

/* Hover efekat */
.navigation ul li a:hover {
    color: #ffffff;
    background-color: #2980b9;
    border: 2px solid #202733;
    border-radius: 4px;
}

/* Hamburger meni (samo za male ekrane) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger .line {
    background-color: #2980b9;
    height: 4px;
    width: 100%;
    border-radius: 5px;
}

/* Responsivnost - Mobilni uređaji */
@media (max-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .navigation {
        display: none;
        position: fixed;
        right: 0;
        top: 0;
        background-color: #2980b9;
        width: 250px;
        height: 100vh;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        flex-direction: column;
    }

    .navigation.open {
        transform: translateX(0);
        display: block;
        padding-top: 60px;
    }

    .navigation ul {
        display: block;
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    .navigation ul li {
        margin-left: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .navigation ul li a {
        display: block;
        padding: 15px;
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
    }

    .navigation ul li a:hover {
        background-color: #2980b9;
        border: 2px solid #ffffff;
        border-radius: 5px;
    }

    .hamburger {
        display: flex;
    }

    .close-btn {
        display: none;
        font-size: 30px;
        color: #ffffff;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        z-index: 30;
    }

    .navigation.open .close-btn {
        display: block;
    }
}

/* Stil za liniju sa tekstom */
.line-with-text {
    width: 100%;
    height: 50px;
    background-color: #2980b9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.line-with-text span {
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.line-with-text::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #2980b9;
    z-index: -1;
}

/* Stil za Coming Soon tekst */
.coming-soon-container {
    display: flex;
    justify-content: center; /* Poravnava horizontalno */
    align-items: center; /* Poravnava vertikalno */
    height: calc(100vh - 120px); /* Visina stranice minus header i footer */
    text-align: center;
    background-color: #f4f4f4; /* Pozadina koja se može prilagoditi */
}

.coming-soon-text {
    font-size: 50px; /* Veliki font */
    font-weight: bold;
    color: #2980b9; /* Plava boja teksta, promenite prema želji */
    text-transform: uppercase; /* Velika slova */
    letter-spacing: 5px; /* Prošireni razmak između slova */
    animation: pulse 2s infinite; /* Animacija "pulse" efekta */
}

/* Animacija za tekst */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Stil za footer */
.site-footer {
    margin-top: auto;
    background-color: #202733;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Potpis dizajnera */
.designer-signature {
    font-size: 12px;
    margin-top: 5px;
    color: #2980b9;
}

.designer-signature a {
    color: #2980b9;
    text-decoration: none;
}

.designer-signature a:hover {
    text-decoration: underline;
}

/* Osiguraj da main zauzima prostor između hedera i footera */
main {
    flex: 1;
    min-height: calc(100vh - 120px); /* Visina ekrana minus visina hedera i footera */
    padding-bottom: 20px;
}

*
.side-buttons {
    position: fixed; /* Fiksira dugmadi sa strane */
    left: 0; /* Drži dugmadi sa leve strane */
    top: 40%; /* Postavlja dugmadi vertikalno u sredinu */
    transform: translateY(-50%); /* Poravnava vertikalno na sredinu */
    display: flex; /* Koristimo flexbox za raspored dugmadi */
    flex-direction: column; /* Stavke će biti vertikalno raspoređene */
    gap: 20px; /* Razmak između dugmadi */
    z-index: 1000; /* Osigurava da dugmadi budu ispred drugih elemenata */
    margin-left: 10px;
}

.button {
    display: block; /* Osigurava da su dugmadi blokovi */
    background-color: #2db45a; /* Pozadina dugmadi */
    padding: 10px;
    border-radius: 20%; /* Zaobljeni dugmadi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Dodavanje senke za efekat */
    transition: background-color 0.3s ease; /* Glatka promena boje */
}

.button2 {
    display: block; /* Osigurava da su dugmadi blokovi */
    background-color: #db3450; /* Pozadina dugmadi */
    padding: 10px;
    border-radius: 20%; /* Zaobljeni dugmadi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Dodavanje senke za efekat */
    transition: background-color 0.3s ease; /* Glatka promena boje */
}

.button:hover {
    background-color: #202733; /* Svetlija boja pri hover-u */
}

.button2:hover {
    background-color: #202733; /* Svetlija boja pri hover-u */
}

.icon {
    width: 35px; /* Veličina ikona */
    height: 35px;
    object-fit: contain; /* Da ikona bude u potpunosti unutar dugmeta */
    background-color: transparent; /* Pozadina dugmadi */
    
}