/* Reset osnovnog stila */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Opšti izgled stranice */
body {
    font-family: Arial, sans-serif;
    background-color: beige;
    background-size: cover;
    background-position: center 80px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: rgb(64, 65, 63); 
}

/* Gornji dio stranice */
header {
    background-image: url('slike/slikaheader.png');
    background-size: cover;
    background-position: center -800px; /* pomera sliku 50px nagore */
    color: white;
    padding: 60px 20px;
    text-align: center;
}
/* Navigacija */
nav {
    background-color: rgba(0, 0, 0, 0.7); /* poluprovidna crna */
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav ul {
    list-style: none;
    padding: 10px;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00; /* zlatna na hover */
}

/* Sekcije */
section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    margin-bottom: 15px;
    color: #ffcc00;
}

/* Galerija */
.galerija-slike {
    display: none;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.galerija-slike img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.video-gallery video {
    width: 300px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Dugme: Povratak na vrh */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #004080;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #ffcc00;
    color: black;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: #ccc;
}
.menu-toggle {
    display: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    margin-top: 5px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* RESPONSIVE SECTIONS I SLIKE */
section {
    padding: 20px;
}

.galerija-slike img {
    width: 100%;
    max-width: 300px;
}
.galerija {
    overflow-x: hidden;
}
.galerija {
    overflow-x: hidden;
    scrollbar-width: none;
}

.galerija::-webkit-scrollbar {
    display: none;
}

/* Responsive Back to Top dugme */
@media (max-width: 600px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 14px;
    }
}