@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mulish", serif;
    font-optical-sizing: auto;

}



ul, ol {
    list-style: none;
}

body {
    background-image: url('../img/bg1.png');
    background-position: center;
    background-size: cover;
    background-position: fixed;
}

a {
    text-decoration: none;
    color: inherit; /* Nasleđuje boju roditeljskog elementa */
}

a:hover {
    color: #ffffff; /* Primer plave boje */
    text-decoration: underline; /* Dodaje underline na hover */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


p, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

header {
    height: auto;
    background-color: black;
    background: rgba(0, 0, 0, 0.2); /* Poluprovidna bela pozadina */
    backdrop-filter: blur(10px); /* Efekat zamagljivanja */
}

.card {
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.2); /* Poluprovidna bela pozadina */
    backdrop-filter: blur(10px); /* Efekat zamagljivanja */
    color: white;
}
.card img {
    width: 250px;
}
.card button{
    background-color: #ae3930 !important;
    color: white;
}
.card h2 {
    font-size: 50px;
}
header img {
    width: 300px;
}
.podaci {
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.2); /* Poluprovidna bela pozadina */
    backdrop-filter: blur(10px); /* Efekat zamagljivanja */
    color: white;
}

.contact-info {
    font-size: 18px; /* Veći tekst */
    text-align: center;
    padding: 10px; /* Unutrašnji razmak za sve elemente */
}

.contact-info .icon {
    font-size: 36px; /* Veličina ikonica */
    color: #ffffff; /* Bela boja */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Blagi glow efekat */
    margin-bottom: 10px; /* Razmak ispod ikonice */
}

.contact-info p {
    margin: 5px 0; /* Smanjen razmak između redova */
}

.contact-info hr {
    border: 0;
    height: 1px;
    background-color: #ddd; /* Svetlo siva boja za divider */
    margin: 15px 0; /* Smanjen razmak između sekcija */
}

@media (max-width: 576px) {
    .contact-info {
        font-size: 16px; /* Manji font za mobilne uređaje */
    }

    .contact-info .icon {
        font-size: 32px; /* Manja veličina ikonica na telefonu */
    }
    .card img {
        width: 150px;
    }
    .footer p {
        text-align: center !important;
    }
    .fut {
        border-right: none;
    }
}

.footer {
    background-color: #000; /* Crna boja */
    color: #fff; /* Bela boja teksta */
    font-size: 16px;
    text-align: center; /* Centriranje svih tekstova */
}

.footer i {
    margin: 10px;
}

.footer a {
    color: #ff4500; /* Narandžasta boja linkova */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .icon-footer {
    font-size: 20px;
    margin-right: 5px; /* Razmak između ikone i naslova */
}

.footer .footer-divider {
    border: 0;
    height: 1px;
    background-color: #444; /* Tamno siva boja linije */
    margin: 20px 0;
}

.footer-logo {
    max-width: 150px; /* Logo veličina */
    margin-top: 10px;
}

.footer p {
    text-align: left;
}
.fut {
    border-right: 1px solid gray;
}
.fut h5 {
    color: #ae3930;
    font-size: 40px;
}
.copy {
    text-align: center !important;
}