@font-face {
    font-family: 'Anton';
    src: url('../fonts/Anton-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-VariableFont';
    src: url('../Inter-VariableFont.woff2') format('woff2'),
    url('../fonts/Inter-VariableFont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Italic-VariableFont';
    src: url('../Inter-Italic-VariableFont.woff2') format('woff2'),
    url('../fonts/Inter-Italic-VariableFont.woff') format('woff');
    font-weight: normal;
    /* font-style: italic; */
}

@font-face {
    font-family: 'Inter-Black';
    src: url('../fonts/Inter-Black.woff2') format('woff2'),
    url('../fonts/Inter-Black.woff') format('woff');
    font-weight: normal;
    /* font-style: italic; */
}


* {
    /* outline: 1px solid red;   */
}

body {
    /* overflow-x: hidden;   */
}

img {
    max-width: 100%;
    height: auto;
}

.text-anton{
    font-family: 'Anton', sans-serif;
}

.text-inter{
    font-family: 'Inter-VariableFont', sans-serif;
}
.text-inter-black{
    font-family: 'Inter-Black', sans-serif;
}

.text-inter-italic{
    font-family: 'Inter-Italic-VariableFont', sans-serif;
}


.lazy-placeholder {
    background-color: #e2d6c5;
    transition: opacity 0.3s;
}

.lazy-loaded {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Coffee slider styles */
.coffee-slider {
    overflow: hidden;
}

.coffee-slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.coffee-slide.active {
    opacity: 1;
    z-index: 5;
}

.slider-dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-dot.active {
    opacity: 1;
    background-color: #BFA276;
    transform: scale(1.2);
}

/* Modal slider navigation */
#prevSlide,
#nextSlide {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

#prevSlide:hover,
#nextSlide:hover {
    opacity: 1;
}

#modalDots .slider-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.5;
}

#modalDots .slider-dot.active {
    opacity: 1;
    background-color: #BFA276;
}

    nav::-webkit-scrollbar {
        display: none;
    }

    nav {
        -ms-overflow-style: none; 
        scrollbar-width: none; 
    }




/* Language dropdown styles */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    min-width: 135px;
    z-index: 50;
    right: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 0.375rem;
}

.language-dropdown-content.show {
    display: block;
}

/* Navigation link styles */
.nav-link {
    position: relative; color: #3F3E3D;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover {
    color: #BFA276;
}

.nav-link.active {
    color: #BFA276 !important; /* Brown color */
    border-bottom: 2px solid #BFA276 !important;
  }
  
  .nav-link:not(.active) {
    color: #3F3E3D; /* Gray color */
    border-bottom: none;
  }

  
/* .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #BFA276;
} */

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #BFA276;
}



.dropdown-nav-link.active {
    background-color: #BFA276;
    color: white!important;
    border-radius:12px;
  }
  
  #menuDropdown {
    background-color: rgb(255, 255, 255); /* Dark background with transparency */
  }

  #menuDropdown a {
    color: #3F3E3D;
    margin: 0.25rem 1rem;
    transition: all 0.2s ease;
    border-bottom: #e7e7e7 1px solid;
  }

  #menuDropdown a:hover {
    background-color: #BFA276;
    color: white;
    border-radius:12px;
  }

  .categories-header {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background-color: rgb(25, 25, 25, 0.95);
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 51;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .categories-header h2 {
    /* color: white; */
    /* font-family: 'Anton', sans-serif; */
    /* font-size: 1.25rem; */
  }
  
  .categories-header button {
    color: #191919;
    transition: transform 0.3s ease;
  }
  
  .categories-header button.rotate {
    transform: rotate(0deg);
  }

 .rotate {
    transform: rotate(180deg);
}
#floating-menu {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#floating-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}