@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

/* BOJE:  #B8860B  FFFFFF   FFFBF2*/

/* PROMENJENA BOJA BACKGROUND, P_INFO FONT SIZE 18PX */
body {
    /*  */
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background-color: #FFFFFF;
    overflow-x: hidden;
    justify-content: center;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: white !important;
    color: black !important;
  }

  /* Dodaj i ostale elemente po potrebi */
}


.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
}

#spinner-logo{
    width: 100px; 
    height: auto;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    /* 0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); } */
    0% { filter: hue-rotate(0deg); } /* Početna boja (nulta rotacija) */
    100% { filter: hue-rotate(360deg); } /* Krajnja boja (360 stepeni rotacije) */
}

/* HEDING */
.primary-heding {
    font-size: 3.2em;
    color: #FFF44F;
}

/* color: ffd862 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    background-color: #ecc07b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    height: 8.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

a {
    text-decoration: none;
    color: inherit;
}

a:active {
    color: inherit;
}
/* #ecc07b */
nav {
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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: #ecc07b;
    /* 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;
}

/* intro_section */

/* width dodato naknadno */
.intro_section {
    width: 100%;
    display: flex;
    align-items: center;
    height: 90vh;
    background: url('zapata_cover_edit.jpg') center/cover no-repeat;
    animation: fadeIn 3s ease-in-out;
    margin-top: 100px;
}



/* boja prethodna  ffd862*/
button {
    display: block;
  margin: 0 auto;
  width: 170px;
  height: 45px;
  border-radius: 24px;
  font-size: 22px;
  border: 1px solid #e63946;
  background-color: #e63946;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  color: white; 
  /* font-family: "Roboto Mono", system-ui; */
}

button:hover {
    background-color: #d62839;
    color: white;
    cursor: pointer;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

#menus {
    transition: ease-in 0.5s ease;
}


@media(max-width:800px) {
    .hiddenOnMobile {
        display: none;
    }

    .hiddenOnDesktop {
        display: block;
    }

    @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: 50%;
        align-items: center;
        justify-content: flex-start;
    }
}

@media(min-width: 801px) and (max-width: 1050px) {
    .hiddenOnMobile {
        display: none;
    }
    .hiddenOnDesktop {
        display: block;
    }
}




/* MEXICAN__TASTE */

/* width dodato naknadno */
.mexican_taste{
    width: 100%; 
    display: flex;
    justify-content: center;
    /* padding-left: 50px;
    padding-right: 50px; */
    animation: fadeIn 5s ease-in-out;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

.taste_info {
    width: 100%;
    /* background-color: rgb(248, 248, 206); */
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* padding-top: 50px; */
}

.h3_subject {
    font-family: 'Abril Fatface', serif;
    font-weight: 600;
    letter-spacing: 2px;
    /* font-family: "Happy Monkey", system-ui; */
    font-size:24px;
   /* color: #800020; */
}

.p_info {
    /* font-family: "Roboto Mono", system-ui; */
    font-weight: 400;
    font-size: 17px;
    /* color: #800020; */
    /* padding: 50px; */
    margin: 15px;
    text-align: center;

}

.taste_img {
    width: 100%;
    background: url('Queso\ Asado.jpg') center/cover no-repeat;
    height: 400px;
    /* border-radius: 8px; */
}

@media(min-width:2000px) {
    .taste_img {
        width: 100%;
        background: url('Queso\ Asado.jpg') center/cover no-repeat;
        height: 550px;
    } 
}

@media(max-width: 550px) {
    .mexican_taste{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 1px;
        padding-right: 1px;
    }

    .taste_info{
        gap: 1px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .h3_subject {
       font-size: 22px;
    }
    
    .p_info {
        font-size: 16px;;
    }

    .taste_img{
        height: 250px;
    }

    button {
       
      width: 152px;
      height: 42px;
      font-size: 20px;
    }
}

@media(min-width:551px) and (max-width:999px) {
    .mexican_taste{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 1px;
        padding-right: 1px;
    }

    .taste_img{
        height: 350px;
        width: 80%;
        /* margin-left: 60px; */
    }
}
/* width dodato nakadno */
.about_us {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
    /* margin-left: 50px;
    margin-right: 50px; */
    border-radius: 8px;
    
    /* opacity: 0;
    transform: translateY(100px);
    animation: slideUp 1s forwards; */
}

/* .about_us:in-viewport {
    animation-play-state: running;
} */

/* @keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
 }  */

 @media(max-width:999px) {
    .about_us {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1px;

    }
 } 



/* instagram_part */
/* width dodato naknadno */
.meals_instagram {
    width: 100%;
    display: flex;
    gap: 35px;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 120px;
    animation: fadeIn 3s ease-in-out;
}

.meals_instagram h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 25px;
    letter-spacing: 2px;
    color: #ecc07b;
}

.item_instagram {
    position: relative;
    overflow: hidden;
}

.meals_pictures {
    display: flex;
    gap: 35px;
}



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* color: rgb(240, 30, 30);  */
    color: #ecc07b;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease; /* Dodajemo efekat tranzicije */   
}

.item_instagram:hover .overlay {
    opacity: 1;
}

.overlay p {
    margin: 0;
    font-size: 15px; 
}

.instagram_subject a {
    text-decoration: none;
    color: inherit;
}

.item_instagram img{
    width: 270px;
    height: 180px;
    border-radius: 8px;
}

.item_instagram a {
    color: white; 
    text-decoration: none; 
}

.item_instagram a:hover {
    /* color: rgb(240, 30, 30);  */
    color: #ffd862;
}

.item_instagram a:active {
    color: white; 
}

.item_instagram :root {
    --scroll: 0;
}

.meal_part_one {
    display: flex;
    gap: 15px;
}

.meal_part_two {
    display: flex;
    gap: 15px;
}

@media(max-width:550px) {
    .meals_instagram{
        margin-top: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
        
    }
    .item_instagram img {
        width: 150px;
        height: 100px;
    }

    .overlay p {
        margin: 0;
        font-size: 8px; 
    }

    .meal_part_one {
        display: flex;
        flex-direction: column;
    }

    .meal_part_two {
        display: flex;
        flex-direction: column;
    }

    .meals_instagram {
        margin-top: 20px;
        margin-bottom: 20px;
    }

}



/* footer */

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: 1m,m,m,  m 30px;
    }

/* footer p{
    padding-left: 500px;
} */
}

@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 {
        /* width: 20vw; */
        display: flex;
        /* gap: 10px; */
        align-items: center;
        border-top: 3px solid #ecc07b;
        background-color: #ecc07b;
        padding-top: 50px;
        padding-bottom: 50px;
        /* padding-left: 650px; */
        }

        .footer__item__subject {
            font-size: 20px;
        }

        footer p {
            font-size: 16px;
        }
}

/* CIUDAD_VUK_MENU 
ffd862*/
.example_all{
    position: relative;
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 450px;
    /* background-color: #ecc07b; */
     background: url('enterijer1_optimized.webp');
    background-size: cover;
    /* background-size: 99%; */
    background-position: center -170px;
     animation: fadeIn 3s ease-in-out;
}

.example_all::before {
    content: "";
    position: absolute;
    inset: 0; /* isto kao top: 0; right: 0; bottom: 0; left: 0; */
    background-color: rgba(0, 0, 0, 0.4); /* tamni overlay */
    /* backdrop-filter: blur(2px); zamućenje - možeš i izostaviti ako nećeš blur */
    z-index: 1;
}

@media(max-width:500px) {
    .example_all{
         background: url('enterijer1_optimized_crop.jpg');
       background-size: cover;
  background-repeat: no-repeat; /* sprečava ponavljanje */
  background-position: center;
  width: 100%;
  /* height: 100vh; */
    }

    
}

@media(min-width:501px) and (max-width:900px) {
    .example_all{
         background: url('enterijer1_optimized_mobile_2.jpg');
       background-size: cover; /* slika pokriva ceo prostor */
  background-repeat: no-repeat; /* sprečava ponavljanje */
  background-position: center;
  width: 100%;
  /* height: 90vh; */
    }
}

@media(min-width:1900px) {
    .example_all{
    position: relative;
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 650px;
    /* background-color: #ecc07b; */
     background: url('enterijer1_optimized.webp');
    background-size: cover;
    /* background-size: 99%; */
    background-position: center -220px;
     animation: fadeIn 3s ease-in-out;
}
}


.example_all h3 {
    margin-top: 30px;
    font-size: 36px;
    /* font-family: 'Abril Fatface', serif; */
    letter-spacing: 5px;
    font-family: "Happy Monkey", system-ui;
    /* color: white; */
}

.example {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 100px;
    /* padding-left: 220px; */
    align-items: center;
    /* height: 350px; */
    /* background-color: #ffd862; */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1), 
                0 0 20px rgba(255, 255, 255, 0.1) inset;
    /* background: url('background_zapata.png') center/cover no-repeat; */
}

@media(max-width:500px) {
    .example {
         display: flex;
        flex-direction: column;
        gap: 35px;
        /* padding-left: 50px;
        padding-right: 50px;
        padding-top: 20px;
        padding-bottom: 20px; */
    }

   
}

@media(min-width:501px) and (max-width:900px) {
    .example {
         display: flex;
        /* flex-direction: column; */
        gap: 20px;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


.menu_ciudad:hover,
.menu_vuk:hover {
    filter: brightness(80%);
}

.menu_ciudad button {
    display: block;
    margin: 0 auto;
    width: 162px;
    height: 42px;
    border-radius: 8px;
    font-size: 22px;
    border: 1px solid #ffd862;
    background-color: #ffd862;
    color: white;
    cursor: pointer;
}

@media(max-width:550px) {
    .example_all {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 850px;
    }
    .example{
        /* display: flex;
        flex-direction: column;
        gap: 20px;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 20px;
        padding-bottom: 20px; */
        /* background: none; */
    }

    .example_all h3 {
        font-family: "Happy Monkey", system-ui;
        font-size: 24px;
    }

    .menu_ciudad,
.menu_vuk {
    /* width: 65vw; */
    width: 270px;
    height: 270px;
}


}

@media(min-width:551px) and (max-width:800px){
    nav {
        width: 100%;
    }
    .example_all{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #ecc07b;
        padding-right: 5px;
        padding-left: 2px;
        /* margin: 10px; */
    }
    .example{
        /* width: 150%; */
        display: flex;
        gap: 20px;
        /* padding-left: 30px; */
        /* padding-right: 50px; */
        background: none;
    }

   

    .menu_ciudad {
        width: 1;
    }
    .meals_instagram{
        margin-top: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
         animation: fadeIn 3s ease-in-out;
        
    }
    .item_instagram img {
        width: 250px;
        height: 180px;
    }

    .overlay p {
        margin: 0;
        font-size: 8px; 
    }

    .meal_part_one {
        display: flex;
        flex-direction: column;
    }

    .meal_part_two {
        display: flex;
        flex-direction: column;
    }

    .meals_instagram {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media(min-width:801px) and (max-width:1050px) {
    .meal_part_one {
        display: flex;
        flex-direction: column;
    }

    .meal_part_two {
        display: flex;
        flex-direction: column;
    }

    .menu_ciudad,
    .menu_vuk {
        width: 300px;
        height: 300px;
    }
    .taste_info {
        display: flex;
        flex-direction: column;
    }

    .taste_info h3 {
        margin-top: 30px;
    }
}

 @media(min-width:1900px) {
    .example {
        display: flex;
        gap: 150px;
        /* padding-left:50px; */
        align-items: center;
        height: 500px;
        /* background: url('background_zapata.png') center/cover no-repeat; */
    }

    
 } 


 /* MENU-TEST */
 .food-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #ecc07b;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .food-image img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .food-info {
    flex: 1;
    margin-left: 20px;
  }

  .food-info h2 {
    font-size: 24px;
    color: #333;
  }

  .food-info p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
  }

  .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .button:hover {
    background-color: #d62839;
  }


  /* aaa */
  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    /* gap: -50px; */
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    /* background: white; */
    /* backdrop-filter: blur(2px); */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
    padding: 24px;
    transition: transform 0.3s ease;
    z-index: 2;
  }

  .card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
    /* background-color: white; */
  }

  .card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    /* margin-bottom: 16px; */
  }

  .card h2 {
    margin: 0;
    font-size: 22px;
    color: #333;
  }

  .card p {
    font-size: 14px;
    color: #777;
    margin: 8px 0 24px;
  }

  .button-group {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .button {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .menu-btn {
    background-color: #e63946;
    color: white;
  }

  .menu-btn:hover {
    background-color: #d62839;
  }
  /*  f4a261 */
  .drink-btn {
    background-color: #ecc07b;
    color: white;
  }

  .drink-btn:hover {
    background-color: #bc9556;
  }

  @media(max-width: 900px) {
    .card {
        width: 320px;
    }

    .card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    /* margin-bottom: 16px; */
  }

  .button {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
  }
  }

  @media(min-width:1900px) {
    .card {
        width: 400px;
    }
  }

