* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'twilight', sans-serif;
    line-height: 1.6;
    background-color: #131313;
    color: #333333;
}

@font-face {
  font-family: 'twilight';
  src: url('fonts/LEMON.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



header {
    background-color: #0f0f0f;
    padding: 1rem;
    text-align: center;
}

.logo img {
    margin-bottom: 1rem;
    width:250px;
    height:auto
}

nav ul {
    background-color: #ed1f24;
    list-style: none;
    padding: 0 15px;
  }
  
  nav ul li {
    display: inline;
    margin: 0.1rem;
    position: relative;
    border-right: 1px solid #000;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #222222;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  nav ul li a:hover {
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
  }
  
  nav ul li a:hover::after {
    transform: scaleX(1);
  }

  nav ul li:last-child {
    border-right: none; /* Remove the border from the last item */
  }
  
  /* Navigation menu styles for medium screens (tablets) */
  @media screen and (max-width: 768px) {
    nav ul li a {
      font-size: 0.85rem; /* Adjust font size for tablet devices */
      padding: 0.5rem 0.8rem; /* Adjust padding for tablet devices */
    }
  }
  
  /* Navigation menu styles for small screens (mobile) */
  @media screen and (max-width: 480px) {
    nav ul li a {
      font-size: 0.65rem; /* Adjust font size for mobile devices */
      padding: 0.5rem 0.6rem; /* Adjust padding for mobile devices */
    }
  }

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #fffefe;
    display: inline-block; /* Add this line to display the logo as an inline block */
}

.menu {
    list-style: none;
    display: inline-block; /* Add this line to display the menu as an inline block */
}

.menu li {
    display: inline;
    padding: 0 1rem;
}

.menu a {
    text-decoration: none;
    color: #000000;
}

.hero {
    background-color: #000000;
    text-align: center;
    height: 25px;
    color: #fcfcfc;
  }
  
  .hero h1 {
    font-size: 1rem;
  }
  
  /* Navigation menu styles for medium screens (tablets) */
  @media screen and (max-width: 768px) {
    
  
    .hero h1 {
      /* Adjust the font size for tablet devices */
      font-size: 0.75rem;
    }
  }

  .slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Adjust the width as needed */
    margin: auto;
    padding: 1rem;
  }
  
  .slide {
    display: none;
  }
  
  .fade {
    animation: fade 2s ease;
  }
  
  @keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    background-color: #1b1b1b;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1400px; /* Add a max-width to limit the width of the container */
    margin: 0 auto; 
    padding: 1rem;
}

.product-card:hover {
    transform: scale(1.05); /* Add this line to slightly enlarge the product on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add this line to apply a subtle box-shadow on hover */
}

.product-card {
    width: 300px; /* Set a fixed width for the product items */
    padding: 1rem;
    border: 3px solid #ed1f24;
    border-radius: 4px;
    text-align: center;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card a {
    color: inherit;
    text-decoration: none;
}

.product-card a:hover {
    color: inherit;
}

.product-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
}

.product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.image-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
}

.prev {
  left: 2px;
}

.next {
  right: 2px;
}

.footer {
  display:flex;
  justify-content:center;
  align-items: center;
  background-color: #000000;
  color: #fff;
  padding: 1rem 0;
}

.footer-section {
  text-align: center;
  margin-bottom: 0rem;
}

.footer p {
  font-size: 1rem;
  margin: 0;
   margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    
  
  .footer p {
    /* Adjust the font size for tablet devices */
    font-size: 0.75rem;

  }
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #222222;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
  .footer {
      flex-direction: column;
  }
}
