*{
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* BOJE:  #B8860B */

body {
    /*  */
    min-height: 100vh;
    /* background-image: url(pexels-quang-nguyen-vinh-222549-2166711.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    backgrounds-position: center; */
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Roboto', sans-serif; */
    background-color: #f9f9f9;
    overflow-x: hidden;
    

}


.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;
}

nav {
    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);
    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 */
.intro_section {
    display: flex;
    align-items: center;
    height: 85vh;
     /* background-image: url(_MG_9545_r22.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;  */
    /* background: url('_MG_9523_r22.jpg') center/cover no-repeat; */
    background: url('zapata_cover_edit.jpg') center/cover no-repeat;
    animation: fadeIn 3s ease-in-out;
}
/* boja prethodna  ffd862*/
button {
    display: block;
  margin: 0 auto;
  width: 170px;
  height: 45px;
  border-radius: 24px;
  font-size: 20px;
  border: 1px solid #ecc07b;
  background-color: #ecc07b;
  color: white;
  font-family: "Roboto Mono", system-ui;
}

@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: 100%;
        align-items: center;
        justify-content: flex-start;
    }
}

@media(min-width: 801px) and (max-width: 1050px) {
    .hiddenOnMobile {
        display: none;
    }
    .hiddenOnDesktop {
        display: block;
    }
}



.main_content {
    /* background-color: red; */
    font-family: "Segoe UI", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 80px;
     
    /* height: 100vh; */
}

.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
    padding: 24px;
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-4px);
  }

  .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: 999px) {
    .main_content {
        display: flex;
        flex-direction: column;
    }
}