/* Algemene stijl */
body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #E8F3F5;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #E8F3F5;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
  color:#292929;
}

.icons span {
  margin-left: 15px;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.icons span:hover {
  color: #0056b3;
}

/* Burger Menu */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.burger .line {
  width: 100%;
  height: 4px;
  background-color: #292929 ;
  transition: all 0.3s ease;
}

.burger.is-active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.is-active .line:nth-child(2) {
  opacity: 0;
}

.burger.is-active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Slightly transparent black */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: left 0.3s ease;
  z-index: 1000; /* Ensure it’s above all content */
}

.mobile-nav.is-active {
  left: 0;
}


.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  margin: 10px 0;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.mobile-nav a:hover {
  background-color: #007bff;
}
/* Close Menu Button */
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.close-menu:hover {
  color: #007bff;
  transform: scale(1.2);
}



/* Over de Website */
.overwebsite {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.foto_rechts img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.foto_links {
  max-width: 500px;
}

.foto_links h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.foto_links p {
  font-size: 18px;
  line-height: 1.5;
}

/* Categorieën */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 40px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.category {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s;
}

.category:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
.product-container {
  padding: 20px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-name {
  font-size: 1.2em;
  margin: 10px 0;
}

.product-description {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.1em;
  color: #27ae60;
  font-weight: bold;
  margin-bottom: 15px;
}

.add-to-cart {
  padding: 10px 15px;
  background-color: #27ae60;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.add-to-cart:hover {
  background-color: #219150;
}

.category-description{
  height: 12rem;
  background: #374A6A;
}

.btn-sport {
  background:#374A6A;

}
.btn-sport-rd {
  background:#F2473F;
}

  