:root {
  --text: #1a1a1a;
  --background: #f2f2f2;
  --primary: #74b800;
  --secondary: #eee8d8;
  --accent: #887b49;
}

/* Reset en basis stijlen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text);
}

/* Header stijlen */
header {
  background-color: black;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
}

.logo-text {
  margin-left: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--background);
}

.logo-text span {
  display: block;
  font-size: 14px;
  color: var(--background);
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: var(--background);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

/* Hero sectie stijlen */
.hero {
  height: 40vh;
  background-image: url("../images/nvidia-banner2.png");
  background-size: cover;
  background-position: center;
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--background);
  text-shadow: 2px 2px 4px rgba(26, 26, 26, 0.7);
}

.hero h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--background);
  text-shadow: 1px 1px 3px rgba(26, 26, 26, 0.7);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  font-size: 40px;
  color: var(--background);
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Button stijlen */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--background);
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  margin: 10px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--background);
  color: var(--background);
}

/* Main content stijlen */
#home {
  padding: 60px 0;
}

#about {
  padding: 40px;
}

.container {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  color: var(--accent);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature boxes */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  padding: 30px;
  background-color: var(--background);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary);
}

.feature-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-box p {
  color: #666;
  line-height: 1.6;
}

/* PC Categories */
.pc-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pc-category {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pc-category img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.pc-category:hover img {
  transform: scale(1.05);
}

.pc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.8);
  padding: 15px;
  color: var(--background);
  text-align: center;
}

.pc-overlay h3 {
  margin-bottom: 5px;
}

.pc-overlay p {
  font-size: 14px;
  margin-bottom: 10px;
}

.pc-overlay .price {
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
}

/* Testimonials */
.testimonials {
  background-color: var(--secondary);
  padding: 60px 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  padding: 30px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: bold;
}

.testimonial-role {
  color: var(--accent);
  font-size: 14px;
}

/* Call To Action */
.cta {
  background-color: var(--primary);
  color: var(--background);
  padding: 60px 0;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #888;
  font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }

  nav {
    margin-top: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav li {
    margin: 5px 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .feature-box,
  .pc-category {
    min-width: 100%;
  }
}

/* Icon fonts */
.icon-gaming::before {
  content: "🎮";
}
.icon-performance::before {
  content: "⚡";
}
.icon-support::before {
  content: "🔧";
}
.icon-delivery::before {
  content: "🚚";
}

.about-section {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  margin-bottom: 40px;
}

.about-heading {
  width: 40%;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  border-right: 3px solid var(--primary);
  padding-right: 40px;
  display: flex;
  align-items: center;
  color: var(--text);
}

.about-content {
  width: 60%;
  padding-left: 40px;
  line-height: 1.6;
}

.about-content p {
  margin-bottom: 15px;
}

/* Footer stijlen */
footer {
  background-color: var(--secondary);
  padding: 40px;
  text-align: center;
  color: var(--text);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Accent elementen */
.accent {
  color: var(--primary);
}



