body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}




header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #2c5e77;
    color: white;
    z-index: 10;
    position: relative;
}

.socijalne-mreze {
    display: flex;
    gap: 10px;
}

.ikonica img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.ikonica img:hover {
    transform: scale(1.2);
}

nav {
    background: #29536b;
    padding: 10px;
    text-align: center;
    z-index: 10;
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}


section {
    padding: 50px;
    text-align: center;
}

.pocetna p,
.o-nama p {
    text-align: justify;
    text-indent: 10%;
}

.o-nama h2,
.o-nama h3 {
    text-align: center;
}

.ordinacija h3 {
    text-align: center;
}

.ordinacija,
.kontakt {
    background: #f4f4f4;
}

.qr-kod {
    padding: 50px;
    background: #e0e0e0;
}

footer {
    background: #2c5e77;
    color: white;
    text-align: center;
    padding: 15px;
}

form {
    max-width: 500px;
    margin: auto;
    text-align: left;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #29536b;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.logo-hb {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    z-index: 1;
}

.slide {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}


.slideshow-pocetna {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    z-index: 1;
}

.slide-pocetna {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.plivajuce-dugme {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c5e77;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.plivajuce-dugme:hover {
    background: #1e4155;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .logo-hb {
        max-width: 70%;
    }

    .slide {
        max-height: 350px;
    }

    .slide-pocetna {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .logo-hb {
        max-width: 50%;
    }

    .slide {
        max-height: 250px;
    }

    .slide-pocetna {
        max-height: 250px;
    }
}

.mobilna-navigacija {
    position: relative;
    display: none;
    z-index: 10;
}

/* Dugme za hamburger meni */
.hamburger {
    background: #2c5e77;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Navigacioni meni za mobilne uređaje */
.meni {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 10px;
    background: #2c5e77;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.meni a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: right;
}

.meni a:hover {
    background: #1f4a5d;
}

/* Prikaz menija kada je aktivan */
.meni.otvoren {
    display: flex;
}

/* Prikaz hamburger menija samo na malim ekranima */
@media (max-width: 768px) {
    .mobilna-navigacija {
        display: block;
    }

    /* .ordinacija h3 {
                text-align: justify;
            } */

    nav {
        display: none;
    }
}