@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
*{
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* BOJE:  #B8860B */

body {
    width: 99vw;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    overflow-x: hidden;
    }

a {
    text-decoration: none;
    color: inherit;
}

a:active {
    color: inherit;
}

/* NAVBAR_SIDEBAR  e3ba78  #ecc07b*/
nav {
    position: fixed;
    width: 100%;
    /* width: 99vw; */
    z-index: 1000;
    background-color: #ecc07b;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
    height: 100px;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 100px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}

nav a:hover{
    background-color: #f0f0f0;
}

nav li:first-child {
    margin-right: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: white;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.hiddenOnDesktop {
    display: none;
}

.subject_text {
    font-family: "Happy Monkey", system-ui;
    font-size: 22px;
    color: #FFFFFF;
}

.subject_text a:hover {
    background-color: inherit;
}

.hiddenOnMobile {
    font-size: 18px;
}

.hiddenOnMobile a {
    color: #FFFFFF;
}

.subject_text a {
    color: #FFFFFF;
}


#menus {
    transition: ease-in 0.5s ease;
}


@media(max-width:800px) {
    .hiddenOnMobile {
        display: none;
    }

    .hiddenOnDesktop {
        display: none;
    }

    @keyframes slideInLeft {
        from {
             transform: translateX(220px);
        }
    
        to {
            transform: translateX(0)
        }
    
    }

    .sidebar {
        animation-name: slideInLeft;
        animation-duration: 0.3s;
        animation-timing-function: ease-in;
        animation-delay: 0s;
        animation-iteration-count: 1;
        animation-direction: normal;  
    }

    
    
}

@media(max-width: 400px) {
    .sidebar{
        width: 100%;
        align-items: center;
        justify-content: flex-start;
    }

    .sidebar a {
        font-size: 24px;
    }
}


/* MENI */

.menu_subject {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
    font-family: "Happy Monkey", system-ui;
    font-size: 22px;
    color: black;
}

.menu_subject img {
    width: 400px;
    height: 80px;
    margin-top: 80px;
}

.vuk_picture {
    width: 400px;
    height: 120px;
}
/* ecc07b */
.item_section {
    width:80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #ecc07b;
    padding-bottom: 15px;
    margin-top: 25px;
    animation: fadeIn 3s ease-in-out;
} 



 
@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

/* .item_section.active {
    opacity: 1;
    transform: translateY(0);
} */

.item_section_subject {
    display: flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.item_section_subject h1 {
    font-family: 'Abril Fatface', serif;
    font-weight: bold;
}


.item {
    width:95vw;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 15px;
}



.item_section_subject{
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ecc07b;
}
/* ecc07b */

.item_section_subject img {
    width: 30px;
}

.item_subject h3 {
   
    font-size: 20px;
    margin-left: 200px;
}



.item_description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 200px;
}

.item_description p {
    /* font-family: "Roboto Mono", system-ui; */
    font-size: 16px;
    font-style: italic;
}

.price {
    color: #ecc07b;
    font-style: italic;
    font-weight: bold;
    margin-right: 180px;
    text-align: right;
}

.mobile_photo {
    display: none;
}

 @media(min-width:551px) and (max-width:1000px){
   .item {
      margin-left: 1px;
    margin-right: 1px; 
   }

   .item_description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-left: 10px; */
}
} 


.item_section_special {
    width:80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
    margin-top: 25px;

        border: 1px solid #ffd862;
        background-color: #fffaf2;
        border-radius: 10px;
      
}

@media(max-width:550px) {
    .menu_subject h1 {
        font-size: 36px;
    }
    .item_section_subject h1 {
        font-size: 28px;
    }

    .item_description {
        margin-left: 1px;
    }

    .item_description p{
        font-size: 16px;
    }

    .item_subject h3 {
        margin-left: 1px;
        font-size: 20px;
    }

    .price {
        margin-right: 1px;
    }

    .menu_subject img {
        width: 300px;
        height: 60px;
    }

    .item_section_special {
        width: 99%;
    }

}



/* footer   ffd862 */

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border-top: 3px solid #ecc07b;
    background-color: #ecc07b;
    padding-top: 30px;
    padding-bottom: 30px;
    /* padding-left: 600px; */
    /* padding-right: 600px; */
}

.footer_content {
    display: flex;
    gap: 100px;
     justify-content: center;
    align-items: center; 
}

footer p {
    font-size: 16px;
    color: white;
}

svg {
    width: 24px;
    height: 24px;
}

.zapata_vuk_info {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.zapata_ciudad_info {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.footer__item__subject {
    /* font-family: "Happy Monkey", system-ui; */
    font-size: 22px;
}

.footer__item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.item__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media(min-width:1900px){
footer {
        width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
    align-items: center;
    border-top: 3px solid #ecc07b;
    background-color: #ecc07b;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 2px;
    padding-right: 2px;
    }

    .footer_content {
        display: flex;
        /* flex-direction: column; */
        gap: 130px;
    }
}

@media(max-width:550px) {
    footer {
        width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
    align-items: center;
    border-top: 3px solid #ecc07b;
    background-color: #ecc07b;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 2px;
    padding-right: 2px;
    }

    .footer_content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer__item__subject {
        font-size: 26px;
    }

    footer p {
        font-size: 16px;
    }
}

@media(min-width:551px) and (max-width:1000px) {
    footer {
        display: flex;
        align-items: center;
        border-top: 3px solid #ecc07b;
        background-color: #ecc07b;
        padding-top: 30px;
        padding-bottom: 30px;
        }

        .footer_content {
    display: flex;
    flex-direction: column;
    gap: 50px;
     justify-content: center;
    align-items: center; 
}

        .footer__item__subject {
            font-size: 20px;
        }

        footer p {
            font-size: 16px;
        }


}