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

/* Basis stijl */
html, body {
  height: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f5f5f5;
  color: #222;
  display: flex;
  flex-direction: column;
}

body {
  flex: 1;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5865f2; /* Discord paars */
  color: #fff;
  padding: 15px 10%;
}

.navbar .logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  background: #404eed;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  background: #fff;
  color: #5865f2;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #5865f2, #404eed);
  color: #fff;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.hero .btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #5865f2;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #d4d8ff;
  color: #222;
}

/* ABOUT GRID (Homepagina “Why Choose Us”) */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.about h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #23272a;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.about-card {
  background: #f0f2ff;
  padding: 25px;
  border-radius: 12px;
  font-weight: bold;
  color: #404eed;
}

/* SHOP SECTION */
.shop {
  padding: 60px 20px;
  text-align: center;
}

.shop h1 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #23272a;
}

/* Shop grid: 3 per rij op desktop, responsive */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolommen */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolommen op tablet */
  }
}

@media (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr; /* 1 kolom op mobiel */
  }
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.product-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 2px solid #5865f2;
}

.product-card h2 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #23272a;
}

.product-card p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.order-btn {
  display: inline-block;
  background: #5865f2;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.order-btn:hover {
  background: #404eed;
}

/* ABOUT US PAGE */
.about-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-page h1 {
  margin-bottom: 20px;
}

.about-page p {
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #444;
}

.about-team {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #5865f2;
}

.team-member h2 {
  margin-bottom: 5px;
}

/* REVIEWS STYLING */
.reviews {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.reviews h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #23272a;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-style: italic;
  transition: transform 0.2s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card h4 {
  margin-bottom: 10px;
  font-weight: bold;
  font-style: normal;
  color: #404eed;
}

.review-card .stars {
  color: #f1c40f; /* goud */
  margin-bottom: 10px;
  font-size: 1.2em;
}



/* FOOTER altijd onderaan */
footer {
  background: #5865f2;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}
