/* GLOBAL */

* {
    padding:0;
    margin:0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin: 0;
    height: 1000px;
    background-color: #25120c;
}

.MainBody{
    display: flex;
    flex-direction: column;
}

hr {
    border: none;
     height: 2px;
    background-color: #e27f25;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #4e221396;
    position: fixed;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: #ea5224de 2px solid;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.3s ease;
    will-change: transform;
}

header.hide {
    transform: translateY(-100%);
}

header nav {
    width: 100%;
    max-width: 1200px;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
    height:auto;
}

.navigacija {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navigacija a {
    font-family: "Poppins";
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    color: #ea5124;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    margin: 10px;
    border-radius: 5px;
    transition: .5s;
}

.navigacija a:hover {
    font-size: 22px;
    color: #4e2213;
    text-decoration: underline;
    background-color: #b93526;
    border-radius: 5px;
    transition: .5s;
}

.hamburger {
    display: none;
    font-size: 32px;
    color: #e27f25;
    cursor: pointer;
}

#podstranica-naslov {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#podstranica-naslov h1 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: bold;
    font-size: 66px;
    color: #e38525;
    margin-top: 20%;
    animation-name: PodH1;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    z-index: 2;
}
@keyframes PodH1 {
    0% {transform: translateY(200px); z-index: 2; opacity: 0%;}
    100% {transform: translateY(0px); z-index: 2; opacity: 100%;}
}


#podstranica-naslov hr {
    width: 190px;
    color: #ea5124;
    animation-name: PodHR;
    animation-duration: 2s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 2;
}
@keyframes PodHR {
    0%{width: 0px; opacity: 0%;}
    100%{width: 190px; opacity: 100%;}
}

/* GLOBAL */
/* POCETNA */

.heroimage {
    margin-top: 0px;
    height: 850px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/ples.jpg");
}

#mainimage h1 {
    position: absolute;
    font-family: "Montserrat";
    font-weight: 500;
    font-style: bold;
    font-size: 66px;
    color: #e38525;
    margin-top: 20%;
    margin-left: 20%;
    animation-name: MainH1;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    z-index: 2;
}
@keyframes MainH1 {
    0% {transform: translateY(200px); z-index: 2; opacity: 0%;}
    100% {transform: translateY(0px); z-index: 2; opacity: 100%;}
}

#mainimage hr {
    position: absolute;
    width: 800px;
    color: #ea5124;
    margin-top: 25%;
    margin-left: 20%;
    animation-name: MainHR;
    animation-duration: 2s;
    animation-delay: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 2;
}
@keyframes MainHR {
    0%{width: 0px; opacity: 0%;}
    100%{width: 800px; opacity: 100%;}
}

#mainimage img {
    position: relative;
    width: 1200px;
    height: auto;
    margin-left: -200px;
    margin-top: 400px;
    animation-name: hGuitar;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 1;
}
@keyframes hGuitar {
    0% {transform: translateX(-1200px); z-index: 1;}
    100% {transform: translateX(0); z-index: 1;}
}

.Main {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    background-repeat: repeat;
    background-size:contain;
    background-attachment: scroll;
    background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/Main-background.png");
}
.MainPage {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    z-index: 3;
    margin: 0 auto;
    padding: 0 20px;
}

.uvod  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px;
    padding: 50px;
    border-top: #4e2213 2px solid;
    border-bottom: #4e2213 2px solid;
}

.upoznajtebend {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.upoznajtebend h1 {
    font-family: "Poppins";
    font-size: 34px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #e27f25;
    width: 100%;
    max-width: 800px;
    opacity: 0;
}

.upoznajtebend h1.show {
    animation: hnaslov 2s ease-in-out forwards;
}

@keyframes hnaslov {
    0% {transform: translateY(200px); opacity: 0%; z-index: 1;}
    100% {transform: translateY(0); opacity: 100%; z-index: 1;}
}

#upbend {
    margin-top: 10px;
    width: 20%;
    color: #4e2213;
}

#marijan-O {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 100px;
    width: 100%;
    max-width: 800px;
    height: 400px;
}

#bend1tekst {
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
    padding: 25px;
    z-index: 2;
}

#bend1tekst.show {
    visibility: visible;
    animation: bendtekstload 2s ease-in-out forwards;
}

@keyframes bendtekstload {
    0% {transform: translateX(-300px); opacity: 0%;}
    100% {transform: translateX(0); opacity: 100%;}
}

#bend1tekst h3 {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 26px;
    color: #e27f25;
}

#bend1tekst p {
     font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    color: #f7d132;
}

#marijan1 {
    width: 400px;
    height: 250px;
    border-radius: 5px;
    border: 2px solid #e27f25;
    transition: .5s;
    z-index: 5;
}

#marijan1:hover {
    border-radius: 15px;
    border: 2px solid #b93526;
    transition: .5s;
}

#zlatko-O {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 800px;
    height: 400px;
}

#bend2tekst {
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
    padding: 25px;
    z-index: 2;
}

#bend2tekst.show {
    visibility: visible;
    animation: bend2tekstload 1.5s ease-in-out forwards;
}

@keyframes bend2tekstload {
    0% {transform: translateX(300px); opacity: 0%;}
    100% {transform: translateX(0); opacity: 100%;}
}

#bend2tekst h3 {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 26px;
    color: #e27f25;
}

#bend2tekst p {
     font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    color: #f7d132;
}

#zlatko1 {
    width: 400px;
    height: 250px;
    border-radius: 5px;
    border: 2px solid #e27f25;
    z-index: 5;
    transition: .5s;
}

#zlatko1:hover {
    border-radius: 15px;
    border: 2px solid #b93526;
    transition: .5s;
}

.uvod h2 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #e27f25;
    width: 100%;
    max-width: 800px;
}

.spotifylink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.tekst1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px;
    padding: 50px;
    border-top: #4e2213 2px solid;
    border-bottom: #4e2213 2px solid;
}

.tekst1 a {
    color: #e27f25;
    text-decoration: none;
    font-weight: 700;
    transition: .5s;
}

.tekst1 a:hover {
    color: #f7d132;
    transition: .5s;
}

.tekst1 h2 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #e27f25;
    width: 100%;
    max-width: 800px;
}

/* POCETNA */

/* GALERIJA */

.MainGal {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    background-repeat: repeat;
    background-size:cover;
    background-attachment: scroll;
    background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/Main-background.png");
}

.MainGallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
}

.gallery {
    width: 100%;
    max-width: 1100px;
    margin: 100px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    cursor: pointer;
    filter: brightness(0.5);
    transition: .5s ease-in-out;
}

.gallery img:hover {
    transition: .5s ease-in-out;
    border-radius: 15px;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    filter: brightness(1.05);
}

.gallery img.show {
    animation: galleryload 1.2s ease-in-out forwards;
}

@keyframes galleryload {
    0% {transform: translateY(100px); opacity: 0%;}

    100% {transform: translateY(0); opacity: 100%;}
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    animation: zoom 0.3s ease;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* GALERIJA */


/* REPERTOAR */

.Mainrep {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    background-repeat: repeat;
    background-size:cover;
    background-attachment: scroll;
    background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/Main-background.png");
}

.MainRepertoar {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 900px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
}

.repertoarbuttons {
    list-style: none;
    margin-top: 100px;
    padding: 0;
    display: flex;
    gap: 120px;
    position: relative;
}

.repertoarbuttons li {
    position: relative;
    width: 100%;
}

.toggle-button {
    font-family: "Montserrat";
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #e27f25;
    background-color: #4e2213;
    width: 380px;
    padding: 30px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 5px solid #e27f25;
    border-radius: 3px;
    transition: .5s;
}

.toggle-button:hover {
    box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.5);
    border: 5px solid #b93526;
    letter-spacing: 0.5px;
    border-radius: 15px;
    transition: .5s;
}

.pjesme {
    position: absolute;
    text-align: center;
    top: 150px;
    width: 880px;
    background-color: #4e2213;
    border: #e38525 5px solid;
    font-family: "Poppins";
    font-size: 18px;
    color: #e27f25;
    border-radius: 3px;
    list-style: none;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease,
        padding 0.5s ease;
}

.pjesme li {
    padding: 5px;
}

.pjesme.active {
    max-height: 500px;
    overflow-y: auto;
    opacity: 1;
    padding: 5px;
}

.repertoarbuttons li:last-child .pjesme {
    left: -500px;
}

.pjesme::-webkit-scrollbar {
    width: 10px;
}

.pjesme::-webkit-scrollbar-track {
    background: #25120c;
}

.pjesme::-webkit-scrollbar-thumb {
    background: #e27f25;
    border-radius: 10px;
}

/* REPERTOAR */

/* KONTAKT */

.Mainkon {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    background-repeat: repeat;
    background-size:cover;
    background-attachment: scroll;
    background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/Main-background.png");
}

.MainKontakt{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
}

#naslovupitnika  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px;
    padding: 50px;
    border-top: #4e2213 2px solid;
    border-bottom: #4e2213 2px solid;
}

#naslovupitnika h1 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    text-align: center;
    color: #e27f25;
    width: 100%;
    max-width: 800px;
}

.kontaktforma {
    margin-bottom: 100px;
}

form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.upitnik {
    width: 100%;
    max-width: 1000px;
    background-color: #25120c;
    border-radius: 5px;
    border: 5px solid #e27f25;
    padding: 20px;
    display: flex;
    justify-content: center;
    transition: .5s;
}

.upitnik:hover {
    border-radius: 15px;
    border: 5px solid #b93526;
    border-radius: 15px;
    transition: .5s;
}

.middle-form {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


label {
    width: 90%;
    max-width: 900px;
    text-align: left;
    color: #e27f25;
    font-size: 25px;
    margin: 10px;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
}

input[type=text], select, textarea {
    width: 90%;
    padding: 20px;
    background-color: #4e2213;
    color: #e27f25;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    border: 2px solid #e27f25;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 15px;
    resize: vertical;
}

input[type=email], select, textarea {
    width: 90%;
    padding: 20px;
    background-color: #4e2213;
    color: #e27f25;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    border: 2px solid #e27f25;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 15px;
    resize: vertical;
}

input[type=submit] {
    align-self: flex-start;
    width: 120px;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    background-color: #4e2213;
    color: #e27f25;
    padding: 15px 25px;
    border: 2px solid #e27f25;
    border-radius: 5px;
    cursor: pointer;
    transition: .5s;
}

#submitbuttonarea {
    width: 90%;
    max-width: 900px;
}

input[type=submit]:hover {
    border: 2px solid #b93526;
    transition: .5s;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

input[type=text], select, textarea {
    resize: none;
}

input[type=email], select, textarea {
    resize: none;
}

input::placeholder, textarea::placeholder {
    color: #e27f25;
    font-family: "Poppins", sans-serif;
}

/* KONTAKT */

/* FOOTER */

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #4e2213;
    height: 270px;
}

.footer h1 {
    font-family: "Poppins";
    font-size: 32px;
    margin: 15px;
    color: #e27f25;

}

.footer h2 {
    font-family: "Poppins";
    font-size: 32px;
    color: #e27f25;
    transition: .5s;
}

.footer h2:hover {
    color: #f7d132;
    transition: .5s;
}

.footercontact {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1000px;
    gap: 400px;
    justify-content: space-between;
}

.phonenumber {
    display: flex;
    flex-direction: column;
}

.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 250px;
}

.socials a {
    text-decoration: none;
}

.fa {
    font-size: 60px;
    width: 50px;
    color: #e27f25;
        transition: .5s;
}

.fa:hover {
    color: #f7d132;
    transition: .5s;
}
/* FOOTER */

@media (max-width: 768px) {

header {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #4e221396;
    position: fixed;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: #ea5224de 2px solid;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.3s ease;
    will-change: transform;
}

header.hide {
    transform: translateY(-100%);
}

header nav {
    width: 100%;
    max-width: 600px;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 120px;
    height:auto;
}

.navigacija {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 150px;
    right: 0;
    width: 100%;
    background-color: #4e2213;
    text-align: center;
    border-top: 2px solid #ea5224de;
    overflow: hidden;
}

.navigacija.active {
    display: flex;
    animation-name: HamburgerOpen;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes HamburgerOpen {
    0% {max-height: 0; opacity: 0%;}
    100% {max-height: 400px; opacity: 100%;}
}

.navigacija.closing {
    display: flex;
    animation-name: HamburgerClose;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes HamburgerClose {
    0% {max-height: 400px; opacity: 100%;}
    100% {max-height: 0; opacity: 0%;}
}

.navigacija a {
    width: 100%;
    margin: 0;
    padding: 20px;
    border-bottom: 1px solid #ea5224de;
}

.hamburger {
    display: block;
}

.hamburger span {
    display: block;
    width: 50px;
    height: 4px;
    background: #e27f25;
    margin: 5px 0;
}

.heroimage {
    margin-top: 0px;
    height: 600px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/ples.jpg");
}

.MainGal, 
.Mainrep, 
.Mainkon {
    background-size:contain;
    background-image:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/Main-background.png");
}

#mainimage h1 {
    position: absolute;
    font-family: "Montserrat";
    font-weight: 500;
    font-style: bold;
    font-size: 36px;
    color: #e38525;
    margin-top: 35%;
    margin-left: 5%;
    animation-name: MainH1;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    z-index: 2;
}

#mainimage hr {
    position: absolute;
    width: 220px;
    color: #ea5124;
    margin-top: 43%;
    margin-left: 5%;
    animation-name: MainHR;
    animation-duration: 2s;
    animation-delay: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 2;
}
@keyframes MainHR {
    0%{width: 0px; opacity: 0%;}
    100%{width: 450px; opacity: 100%;}
}

#mainimage img {
    position: relative;
    width: 700px;
    height: auto;
    margin-left: -300px;
    margin-top: 380px;
    animation-name: hGuitar;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 1;
}
@keyframes hGuitar {
    0% {transform: translateX(-1300px); z-index: 1;}
    100% {transform: translateX(0); z-index: 1;}
}

.Main {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    background-repeat: repeat;
    background-size:contain;
    background-attachment: scroll;
    background-image:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/Main-background.png");
}

#marijan-O {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px;
    width: 100%;
    max-width: 800px;
    height: 400px;
}

#zlatko-O {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 100px;
    width: 100%;
    max-width: 800px;
    height: 400px;
}

#bend1tekst p {
    width: 500px;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    color: #f7d132;
}

#bend2tekst p {
    width: 500px;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    color: #f7d132;
}

.spotifylink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footercontact {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1000px;
    justify-content: space-between;
    gap: 100px;
}

#podstranica-naslov h1 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: bold;
    font-size: 66px;
    color: #e38525;
    margin-top: 35%;
    animation-name: PodH1;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    z-index: 2;
}


#podstranica-naslov hr {
    width: 190px;
    color: #ea5124;
    animation-name: PodHR;
    animation-duration: 2s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 2;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    cursor: pointer;
    filter: brightness(0.5);
    transition: .5s ease-in-out;
}

.repertoarbuttons {
    list-style: none;
    margin-top: 80px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.pjesme {
    position: absolute;
    text-align: center;
    top: 250px;
    width: 600px;
    background-color: #4e2213;
    border: #e38525 5px solid;
    font-family: "Poppins";
    font-size: 18px;
    color: #e27f25;
    border-radius: 3px;
    list-style: none;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease,
        padding 0.5s ease;
}

.repertoarbuttons li:first-child .pjesme {
    left: -100px;
    top: 260px;
}

.repertoarbuttons li:last-child .pjesme {
    left: -100px;
    top: 120px;
}

#naslovupitnika h1 {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 28px;
    font-style: normal;
    text-align: center;
    color: #e27f25;
    width: 100%;
    max-width: 800px;
}

}
@media (max-width: 360px) {

header {
    width: 100%;
    width: 360px;
    display: flex;
    justify-content: center;
    background-color: #4e221396;
    position: fixed;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: #ea5224de 2px solid;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.3s ease;
    will-change: transform;
}

header.hide {
    transform: translateY(-100%);
}

header nav {
    width: 100%;
    max-width: 280px;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 90px;
    height:auto;
}

.navigacija {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 120px;
    right: 0;
    width: 100%;
    background-color: #4e2213;
    text-align: center;
    border-top: 2px solid #ea5224de;
    overflow: hidden;
}

.navigacija.active {
    display: flex;
    animation-name: HamburgerOpen;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes HamburgerOpen {
    0% {max-height: 0; opacity: 0%;}
    100% {max-height: 400px; opacity: 100%;}
}

.navigacija.closing {
    display: flex;
    animation-name: HamburgerClose;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes HamburgerClose {
    0% {max-height: 400px; opacity: 100%;}
    100% {max-height: 0; opacity: 0%;}
}

.navigacija a {
    width: 100%;
    margin: 0;
    padding: 20px;
    font-size: 16px;
    border-bottom: 1px solid #ea5224de;
}

.navigacija a:hover {
    font-size: 16px;
}

.hamburger {
    display: block;
}

.hamburger span {
    display: block;
    width: 50px;
    height: 4px;
    background: #e27f25;
    margin: 5px 0;
}

.heroimage {
    margin-top: 0px;
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/ples.jpg");
}

.MainGal, 
.Mainrep, 
.Mainkon {
    background-size:contain;
    background-image:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/Main-background.png");
}

#mainimage h1 {
    position: absolute;
    font-family: "Montserrat";
    font-weight: 500;
    font-style: bold;
    font-size: 26px;
    color: #e38525;
    margin-top: 55%;
    margin-left: 10%;
    animation-name: MainH1;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    z-index: 2;
}

#mainimage hr {
    position: absolute;
    width: 170px;
    color: #ea5124;
    margin-top: 73%;
    margin-left: 10%;
    animation-name: MainHR;
    animation-duration: 2s;
    animation-delay: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 2;
}
@keyframes MainHR {
    0%{width: 0px; opacity: 0%;}
    100%{width: 170px; opacity: 100%;}
}

#mainimage img {
    position: relative;
    width: 430px;
    height: auto;
    margin-left: -200px;
    margin-top: 280px;
    animation-name: hGuitar;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 1;
}
@keyframes hGuitar {
    0% {transform: translateX(-1200px); z-index: 1;}
    100% {transform: translateX(0); z-index: 1;}
}

.Main {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    background-repeat: repeat;
    background-size:contain;
    background-attachment: scroll;
    background-image:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/Main-background.png");
}

.uvod  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    border-top: #4e2213 2px solid;
    border-bottom: #4e2213 2px solid;
}

.uvod h2 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    text-align: center;
    font-size: 20px;
    color: #e27f25;
    width: 100%;
    max-width: 300px;
}

#marijan-O {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px;
    width: 100%;
    max-width: 800px;
    height: 400px;
}

#marijan1 {
    width: 300px;
    height: auto;
    border-radius: 5px;
    border: 2px solid #e27f25;
    transition: .5s;
    z-index: 5;
}

#zlatko1 {
    width: 300px;
    height: auto;
    border-radius: 5px;
    border: 2px solid #e27f25;
    transition: .5s;
    z-index: 5;
}

#zlatko-O {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 100px;
    width: 100%;
    max-width: 800px;
    height: 400px;
}

#bend1tekst p {
    width: 300px;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 14px;
    color: #f7d132;
}

#bend2tekst p {
    width: 300px;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 14px;
    color: #f7d132;
}

.spotifylink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#podstranica-naslov h1 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: bold;
    font-size: 66px;
    color: #e38525;
    margin-top: 20%;
    animation-name: PodH1;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    z-index: 2;
}

#podstranica-naslov hr {
    width: 100px;
    color: #ea5124;
    animation-name: PodHR;
    animation-duration: 2s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 2;
}
@keyframes PodHR {
    0%{width: 0px; opacity: 0%;}
    100%{width: 100px; opacity: 100%;}
}

.tekst1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    border-top: #4e2213 2px solid;
    border-bottom: #4e2213 2px solid;
}

.tekst1 h2 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    text-align: center;
    font-size: 20px;
    color: #e27f25;
    width: 100%;
    max-width: 800px;
}

.spotifylink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #4e2213;
    height: 170px;
}

.footercontact {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 300px;
    justify-content: space-between;
    align-items:center;
    gap: 0px;
}

.footer h1 {
    font-family: "Poppins";
    font-size: 20px;
    margin: 15px;
    color: #e27f25;

}

.footer h2 {
    font-family: "Poppins";
    font-size: 18px;
    color: #e27f25;
    transition: .5s;
}

.phonenumber {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    width: 150px;
}

.socials {
    display: flex;
    flex-direction: row;
    align-content:center;
    justify-content: center;
    width: 150px;
}

.socials a {
    text-decoration: none;
}

.fa {
    font-size: 40px;
    width: 50px;
    color: #e27f25;
    transition: .5s;
}

#podstranica-naslov h1 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: bold;
    font-size: 32px;
    color: #e38525;
    margin-top: 55%;
    animation-name: PodH1;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    z-index: 2;
}


#podstranica-naslov hr {
    width: 190px;
    color: #ea5124;
    animation-name: PodHR;
    animation-duration: 2s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    z-index: 2;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    cursor: pointer;
    filter: brightness(0.5);
    transition: .5s ease-in-out;
}

.repertoarbuttons {
    list-style: none;
    margin-top: 80px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.toggle-button {
    font-family: "Montserrat";
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #e27f25;
    background-color: #4e2213;
    width: 300px;
    padding: 30px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 5px solid #e27f25;
    border-radius: 3px;
    transition: .5s;
}

.pjesme {
    position: absolute;
    text-align: center;
    top: 250px;
    width: 300px;
    background-color: #4e2213;
    border: #e38525 5px solid;
    font-family: "Poppins";
    font-size: 18px;
    color: #e27f25;
    border-radius: 3px;
    list-style: none;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease,
        padding 0.5s ease;
}

.repertoarbuttons li:first-child .pjesme {
    left: 0px;
    top: 260px;
}

.repertoarbuttons li:last-child .pjesme {
    left: 0px;
    top: 120px;
}

#naslovupitnika  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   margin-top: 100px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    border-top: #4e2213 2px solid;
    border-bottom: #4e2213 2px solid;
}

#naslovupitnika h1 {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    text-align: center;
    color: #e27f25;
    width: 100%;
    max-width: 800px;
}

label {
    width: 90%;
    max-width: 900px;
    text-align: left;
    color: #e27f25;
    font-size: 22px;
    margin: 10px;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
}

input[type=text], select, textarea {
    width: 90%;
    padding: 20px;
    background-color: #4e2213;
    color: #e27f25;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    border: 2px solid #e27f25;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 15px;
    resize: vertical;
}

input[type=email], select, textarea {
    width: 90%;
    padding: 20px;
    background-color: #4e2213;
    color: #e27f25;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    border: 2px solid #e27f25;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 15px;
    resize: vertical;
}

input[type=submit] {
    align-self: flex-start;
    width: 120px;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    background-color: #4e2213;
    color: #e27f25;
    padding: 15px 25px;
    border: 2px solid #e27f25;
    border-radius: 5px;
    cursor: pointer;
    transition: .5s;
}
}