@import url("https://use.typekit.net/set8bwh.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #060b1f;
    color: #ffffff;
    font-family: "Roboto", serif;
    margin: 0;
    padding: 0;
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffff;
    background-image: none;
}

.video-pozadina {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.naslov {
    z-index: 1;
    background: rgba(6, 11, 31, 0.3);
    padding: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


h1 {
    font-size: 6em;
    font-family: "afronaut", sans-serif;
    margin: 0;
}

.datum {
    font-size: 1.5em;
    font-family: "afronaut", sans-serif;
    margin: 10px 0;
}

.button {
    background: #6b42f6;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
    transition: 0.3s ease-in-out;
    transition: transform 0.5s ease;
    border-radius: 100px;
}

.button:hover {
    background: #060b1f;
    transform: scale(1.1);
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #060b1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

nav .logo {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding-right: 5em;
}

nav a {
    color: #6b42f6;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #6b42f6;
    opacity: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

nav a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.section {
    padding: 50px;
    text-align: center;
    width: 100%;
    padding-top: 80px;
    height: auto;
    padding: 2em;

}

.section h2 {
    font-size: 4em;
    font-family: "afronaut", sans-serif;
    margin-top: 0.5em;
    color: #6b42f6;
    padding-bottom: 0.5em;
}

.rozo {
    color: #6b42f6;
}

#raspored {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.p-raspored {
    font-size: 1.5em;
    text-align: left;
    padding-top: 1em;
}

.pozornice {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    flex-wrap: wrap;
}

.asimetricno {
    flex: 1;
    margin-top: 4em;
    min-width: 320px;
    background: linear-gradient(135deg, #6b42f6, #9a74f8);
    padding: 1.5em;
    border-radius: 100px 200px 100px 200px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.asimetricno:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.asimetricno h4 {
    text-align: center;
    font-family: "afronaut", sans-serif;
    font-size: 1.5em;
    margin-bottom: 0.5em;
    margin-right: 2em;
    margin-top: 0.5em;
    color: #fff;
}

.asimetricno ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.asimetricno li {
    margin-bottom: 1em;
    font-size: 1.2em;
    color: #f3e8ff;
    margin-right: 2em;
}

.izvodaci-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em;
    margin-top: 1em;
}

.izvodac {
    width: 400px;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 80px 90px 60px 80px;
    cursor: pointer;
}

.izvodac-tekst {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    border-radius: 8px;
    background: linear-gradient(135deg, #6b42f6, #9a74f8);
    padding: 2em;
    box-sizing: border-box;
    opacity: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    font-size: 1em;
}

.izvodac img {
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    border-radius: 8px;
}

.izvodac.active img {
    opacity: 0;
}

.izvodac.active .izvodac-tekst {
    opacity: 1;
}

.izvodac-tekst h3 {
    font-size: 1.5em;
    margin: 0.5em 0 0.25em 0;
}

.izvodac-tekst p {
    margin: 0.2em 0;
    line-height: 1.2;
    font-size: 0.8em;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

details {
    background-color: #ffff;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

details:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 10px #6b42f6;
}

summary {
    padding: 0.8em;
    list-style: none;
    background-color: #6b42f6;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 1px 1px 1px 1px;
    transition: background-color 0.3s ease;

}

summary:hover {
    background-color: #060b1f;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: "\002B";
    font-size: 1em;
    color: #fff;
}

details[open] summary {
    background-color: #6b42f6;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

details[open] summary:after {
    content: "\00D7";
}

details[open] div {
    padding: 0.8em;
    background-color: #060b1f;
    border-radius: 0 0 8px 8px;
}

div {
    font-size: 1em;
    color: #ffff;
    line-height: 1.5;
}

#ulaznice {
    padding: 50px 20px;
    text-align: center;
}

#ulaznice h2 {
    font-size: 3em;
    font-family: "afronaut", sans-serif;
    margin-bottom: 20px;
    color: #6b42f6;
}

#ulaznice p {
    font-size: 1.5em;
    line-height: 1.6;
    margin-bottom: 15px;
}

#ulaznice .ulaznice-info {
    background-color: #6b42f6;
    padding: 20px;
    border-radius: 8px;
    color: white;
    margin: 20px auto;
    max-width: 500px;
}


#ulaznice a {
    font-weight: bold;
    font-size: 1.5em;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    background-color: #6b42f6;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

#ulaznice a:hover {
    background-color: #060b1f;
    transform: scale(1.1);
}

#ulaznice a:active {
    transform: scale(1);
}



#lokacija {
    padding: 50px;
    text-align: center;
}

.p-lokacija {
    font-size: 1.5em;
    text-align: left;
    margin-right: 10em;
    margin-left: 13em;
    padding-top: 1em;
}

.p-adresa {
    font-size: 1.2em;
    padding: 1em;
}

#lokacija h3 {
    font-size: 1.5em;
    margin-top: 2em;
}

#lokacija a {
    color: #6b42f6;
    text-decoration: none;
    font-weight: bold;
}

#lokacija a:hover {
    text-decoration: underline;
}

iframe {
    margin-top: 20px;
}

footer {
    background: #060b1f;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer p {
    padding-top: 1em;
}

.ikone {
    margin-top: 10px;
}

.ikone img {
    margin-right: 10px;
}







@media (min-width: 768px) and (max-width: 1024px) {

    .p-lokacija {
        font-size: 1.3em;
        margin-right: 5em;
        margin-left: 4em;
    }

    .p-adresa {
        font-size: 1em;
    }

    .section h2 {
        font-size: 2.5em;
    }

    h1 {
        font-size: 5em;
    }

    .p-raspored {
        font-size: 1.3em;
        padding-right: 3em;
        padding-left: 2em;
    }

    .izvodaci-grid {
        gap: 1em;
    }

    .izvodac {
        width: 350px;
        height: 250px;
    }

    #ulaznice p {
        font-size: 1.3em;
    }

    #ulaznice a {
        font-size: 1.3em;
    }

    .container {
        max-width: 600px;
        margin-top: 1em;
    }

    summary {
        font-size: 1.3em;
    }


}

@media (max-width:768px) {

    header {
        background-image: url('slike/pozadina.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .video-pozadina {
        display: none;
    }

    h1 {
        font-size: 3em;
    }

    .button {
        font-size: 1em;
    }

    nav {
        padding: 1em 2em;

    }

    nav .logo {
        height: 20px;
    }

    nav a {
        font-size: 0.6em;
    }

    .section h2 {
        font-size: 2em;
    }

    #raspored h2 {
        margin-right: 1em;
    }

    .p-raspored {
        font-size: 1em;
        padding-right: 3em;
        padding-left: 2em;
    }

    .pozornice {
        gap: 1em;
    }

    .asimetricno {
        margin-top: 4em;
    }

    .asimetricno li {
        font-size: 1em;
    }

    #izvodaci h2 {
        margin-right: 2em;
    }

    .izvodaci-grid {
        gap: 1em;
    }

    .izvodac {
        width: 350px;
        height: 250px;
        margin-right: 3em;
    }

    #ulaznice h2 {
        font-size: 2em;
    }

    #ulaznice p {
        font-size: 1em;
    }

    #ulaznice a {
        font-size: 1em;
    }

    #lokacija {
        padding: 50px;
        text-align: center;
    }

    #lokacija h2 {
        margin-right: 2em;
    }

    .p-lokacija {
        font-size: 1em;
        text-align: left;
        margin-left: 0em;
        margin-right: 5em;

        padding-top: 1em;
    }

    .p-adresa {
        font-size: 1em;
        margin-right: 6em;
    }

    #lokacija h3 {
        margin-right: 4em;
    }

    #lokacija a {
        margin-right: 6em;
    }

    iframe {
        margin-top: 20px;
        width: 300px;
        height: 300px;
        margin-right: 6em;
    }

    .container {
        max-width: 300px;
        margin-right: 6em;
        margin-top: 1em;
    }

    summary {
        font-size: 1em;
    }


}