* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease-in-out;
}

.video-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: black;
    border-bottom: 3px solid rgba(255, 255, 255, 0.276);
    animation: fadeIn 2s ease-in-out;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    font-family: "Monomaniac One", serif;
    opacity: 0;
    animation: textFadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

nav {
    background-color: black;
    padding: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid white;
    animation: slideDown 1s ease-out forwards;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    transition: 0.5s;
}

a {
    color: #ffffff;
}

nav ul li a:hover {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
    transform: scale(1.1);
}

section {
    padding: 80px 20px;
    text-align: center;
    color: rgb(255, 255, 255);
    background: black;
    border-bottom: 3px solid #ffffff;
    opacity: 0;
    animation: sectionFadeIn 2s ease-out forwards;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: auto;
    letter-spacing: 2px;
    line-height: 1.8;
}

#izvodjaci ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.izvodjac {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    min-width: 400px;
    border: 2px solid #555;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.izvodjac img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.izvodjac-info {
    color: white;
    max-width: 300px;
}

.izvodjac-info strong {
    font-size: 1.4em;
    color: #ffcc00;
}


.ulaznice-lista,
.faq-lista {
    list-style: none;
    max-width: 800px;
    margin: 20px auto;
    padding: 0;
    text-align: left;
    font-size: 1.2em;
    line-height: 1.8;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #555;
}

.ulaznice-lista li,
.faq-lista li {
    margin-bottom: 15px;
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e6b800;
}



@media (max-width: 900px) {
    #izvodjaci ul {
        flex-direction: column;
        align-items: center;
    }

    .izvodjac {
        width: 90%;
        flex-direction: column;
        text-align: center;
    }

    .izvodjac img {
        margin: 0 0 15px 0;
    }
}

#raspored ul {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    padding-left: 20px;
    font-size: 1.2em;
    line-height: 1.8;
    letter-spacing: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #555;
    opacity: 0;
    animation: fadeUp 1.5s ease-out forwards;
}

#raspored ul li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #666;
}

#raspored ul li strong {
    color: #ffcc00;
    font-size: 1.3em;
}

#raspored ul li br {
    display: block;
    margin-top: 5px;
}

#raspored p {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto;
    color: #ccc;
}

#raspored p:first-of-type {
    margin-top: 40px;
}

#raspored li {
    padding-left: 20px;
}

#o\ nama p {
    color: #ccc;
    padding-left: 15px;
}

footer {
    text-align: center;
    background: black;
    color: white;
    padding: 20px;
    border-top: 3px solid #ffffff;
    font-size: 1.2em;
    opacity: 0;
    animation: fadeInFooter 1s ease-out forwards;
}

@keyframes fadeInFooter {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@media (max-width: 600px) {
    .text {
        font-size: 1.8em;
        padding: 15px;
        line-height: 1.4;
    }

    nav ul {
  
        gap: 5px;
    }

    nav ul li {
        margin: 10px 0;
    }

    section {
        padding: 60px 10px;
    }

    section h2 {
        font-size: 2em;
    }

    section p {
        font-size: 1em;
        letter-spacing: 1px;
    }

    .izvodjac {
        flex-direction: column;
        align-items: center;
        min-width: unset;
        width: 100%;
        padding: 15px;
    }

    .izvodjac img {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .izvodjac-info {
        max-width: 90%;
    }

    #raspored ul {
        font-size: 1em;
        padding: 10px;
    }

    .faq-lista {
        font-size: 1em;
        padding: 15px;
    }

    .ulaznice-lista {
        font-size: 1em;
        padding: 15px;
    }

    footer {
        font-size: 1em;
        padding: 15px;
    }

}


