:root {
  --primary: #e10600;
  --secondary: #1e1e1e;
  --accent: #ffcc00;
  --light: #f5f5f5;
  --dark: #15151e;
}

body {
  background: linear-gradient(135deg, var(--dark), var(--secondary));
  color: var(--light);
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: rgba(30,30,30,0.95);
  backdrop-filter: blur(10px);
  padding-top: 60px;
  transition: left 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}
.sidebar a {
  padding: 1rem 2rem;
  text-decoration: none;
  color: var(--light);
  font-weight: bold;
}
.sidebar a:hover {
  background: var(--primary);
  color: var(--accent);
}
.sidebar.active {
  left: 0;
}
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 1.5rem;
  background: var(--primary);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  z-index: 2100;
}

/* Header */
header {
  text-align: center;
  padding: 2rem;
  background: rgba(30,30,30,0.8);
  border-bottom: 3px solid var(--primary);
}
header h1 {
  color: var(--primary);
  text-transform: uppercase;
}

/* Hero */ 
.hero {
  height: 50vh;
  background: url('../img/Merch2.jpg  ') center/cover no-repeat; /* <-- BELANGRIJK */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.211); /* donkere overlay */
}

.hero h2 {
  color: var(--light);
  font-size: 2.5rem;
  z-index: 1;
  background: rgba(255, 255, 255, 0);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-align: center;
}


/* Products */
.products {
  padding: 3rem 2rem;
}
.products h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  border-left: 5px solid var(--accent);
  padding-left: 0.5rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.product-card {
  background: rgba(30,30,30,0.7);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  text-align: center;
  padding-bottom: 1rem;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card h3 {
  color: var(--accent);
  margin: 1rem 0 0.5rem;
}
.product-card p {
  padding: 0 1rem;
}
.price {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--light);
  margin: 0.5rem 0;
}
button {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Footer */
footer {
  background: rgba(30,30,30,0.9);
  text-align: center;
  padding: 2rem;
  border-top: 3px solid var(--primary);
}
