
/* Header Styles */
.nav-link {
    color: #131313;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0%;
    background-color: #131313;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link:active,
.nav-link:focus {
    color: #131313 !important;
}

.fa-cart-shopping {
    transform: scaleX(-1);
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
    display: block;
    margin-top: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5;
    color: #6d4c41;
}

@media (max-width:992px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-toggler {
        border: none;
    }
}

/* Header Styles */

/*footer section*/

.koffee-footer {
    background-color: #211f1e;
    color: #ccc;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 80px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0;
}

.footer-desc {
    max-width: 700px;
    margin: 1.5rem auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a1a1a1;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    color: #f1f1f1;
}

.footer-contact p {
    margin: 0.3rem 0;
}

.footer-social {
    margin-top: 1rem;
    font-size: 1.3rem;
}

.footer-social i {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-social i:hover {
    color: #009f3b;
}

.footer-bottom {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
    margin-left: 0.3rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #00c853;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 1.2rem;
    transition: background 0.3s;
    display: none;
    z-index: 100;
}

.scroll-to-top:hover {
    background-color: #009f3b;
}

/*footer section*/

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
 
  .preloader-logo {
    max-height: 100px;
    animation: scaleUpDown 2s ease-in-out infinite;
    transition: transform 2s ease-in-out;
  }
 
  /* Scale animation */
  @keyframes scaleUpDown {
    0% {
      transform: scale(1);
    }
    25% {
      transform: scale(1.2);
    }
    50% {
      transform: scale(1);
    }
    75% {
      transform: scale(0.8);
    }
    100% {
        transform: scale(1);
      }
  }
 
  #preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
  }
/* Smoke */
.smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.07;
    z-index: 9999;
    pointer-events: none;
  }