body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
    text-align: center;
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#pozadinski-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6) blur(3px);
}

header h1 {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
}

.gumb {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff4c4c, #ff1c1c);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(255, 76, 76, 0.5);
}

.gumb:hover {
    transform: scale(1.12);
    box-shadow: 0 7px 20px rgba(255, 76, 76, 0.7);
}

nav {
    position: fixed;
    top: 4%;
    width: 100%;
    z-index: 1;
    transition: top 0.3s;
}

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

nav ul li {
    margin: 0 25px;
    transition: transform 0.3s, color 0.3s;
}

nav ul li:hover {
    transform: scale(1.2);
}

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

nav ul li a:hover {
    color: #ff1c1c;
}

section {
    padding: 50px 20px;
}
.raspored, .izvodjaci {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.pozornica, .izvodjac1, .izvodjac2, .izvodjac3, .izvodjac4, .izvodjac5, .izvodjac6 {
    background: #333;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease-in-out;
}
.pozornica:hover, .izvodjac1:hover, .izvodjac2:hover, .izvodjac3:hover, .izvodjac4:hover, .izvodjac5:hover, .izvodjac6:hover {
    transform: scale(1.05);
}

.izvodjac1 {
    background-image: url(slike/izvodaci/AlphaBeats.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}  

.izvodjac2 {
    background-image: url(slike/izvodaci/BetaBlast.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.izvodjac3 {
    background-image: url(slike/izvodaci/DeltaAvenue.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.izvodjac4 {
    background-image: url(slike/izvodaci/GammaGroove.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.izvodjac5 {
    background-image: url(slike/izvodaci/LambdaLoop.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.izvodjac6 {
    background-image: url(slike/izvodaci/ZetaZing.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#ulaznice {
    background-image: url(slike/atmosfera/a1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#ulaznice p {
    font-weight: bold;
    color: #000000;
}

#ulaznice h2 {
    font-weight: bold;
    color: #000000;
}

h2  {
    color: #ffffff;
}

.pozornica {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.8), rgba(75, 0, 130, 0.8));
    color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 69, 0, 0.6);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}
.pozornica:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 25px rgba(255, 69, 0, 1);
}

footer {
    color: #ff1c1c;
}

.ikone {
    margin-top: 10px;
}

.ikone a {
    color: #ff1c1c;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.ikone a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: #ff4c4c;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 1001;
}

@media (max-width: 1024px) {
    header h1 {
        font-size: 3rem;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .raspored, .izvodjaci {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pozornica, 
    .izvodjac1, .izvodjac2, .izvodjac3,
    .izvodjac4, .izvodjac5, .izvodjac6 {
        width: 45%;
    }
}

@media (max-width: 768px) {
    nav {
        background: rgba(0, 0, 0, 0.7);
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    #nav-list {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
    }

    #menu-toggle:checked + .hamburger + #nav-list {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
    }
}

@media (max-width: 380px) {
    header h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .gumb {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .pozornica,
    .izvodjac1, .izvodjac2, .izvodjac3,
    .izvodjac4, .izvodjac5, .izvodjac6 {
        width: 100%;
        margin: 8px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    #nav-list {
        top: 45px;
    }

    .hamburger {
        font-size: 1.8rem;
        top: 8px;
        right: 15px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section p {
        font-size: 0.95rem;
    }
}
