/* ============================
   GLOBAL RESET & BASIS
   ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d0d0d;
  color: #eee;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Links */
a {
  color: #ff3b3b;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #ff6666;
  outline: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================
   HEADER
   ============================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #222;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 59, 59, 0.4);
}

header h1 {
  color: #ff3b3b;
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
  user-select: none;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav a {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #eee;
  transition: color 0.3s ease;
}

header nav a:hover,
header nav a:focus {
  color: #ff3b3b;
}

/* ============================
   HERO SECTION
   ============================ */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ff3b3b;
}

#hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* zorg dat de achtergrond zichtbaar is en niet achter body komt */
  filter: brightness(0.6);
}

.hero-text {
  position: relative;
  z-index: 2; /* hoger dan hero image zodat tekst zichtbaar blijft */
  max-width: 700px;
  padding: 0 1rem;
}

#hero h2 {
  font-family: 'Anton', sans-serif;
  font-size: 5rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: flicker 3s infinite alternate;
}

#hero p {
  font-weight: 300;
  font-size: 1.6rem;
  margin: 0 auto 2rem;
}

@keyframes flicker {
  0%, 100% {
    text-shadow: 0 0 25px #ff3b3b, 0 0 40px #ff3b3b, 0 0 70px #ff6666;
  }
  50% {
    text-shadow: 0 0 15px #ff3b3b88, 0 0 30px #ff3b3b88, 0 0 50px #ff666688;
  }
}

/* ============================
   ALGEMENE SECTIES
   ============================ */
.section-padding {
  padding: 5rem 0;
}

#intro,
#populariteit,
#toekomst {
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(255, 59, 59, 0.3);
  padding: 2rem;
  margin: 3rem auto;
  max-width: 900px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#intro:hover,
#intro:focus-within,
#populariteit:hover,
#populariteit:focus-within,
#toekomst:hover,
#toekomst:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 59, 59, 0.7);
}

#intro h2,
#populariteit h2,
#toekomst h2 {
  color: #ff3b3b;
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

#intro p,
#populariteit p,
#toekomst p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
}

/* ============================
   FIGHTERS SECTION
   ============================ */
#fighters {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

#fighters h2 {
  color: #ff3b3b;
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.fighters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.fighter-card {
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(255, 59, 59, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: #ddd;
}

.fighter-card:hover,
.fighter-card:focus {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(255, 59, 59, 0.7);
}

.fighter-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-bottom: 5px solid #ff3b3b;
  transition: transform 0.5s ease;
}

.fighter-card:hover img {
  transform: scale(1.05);
}

.fighter-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.fighter-info h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  color: #ff3b3b;
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.subtitle {
  font-style: italic;
  font-weight: 300;
  color: #bbb;
  margin-bottom: 1.2rem;
}

.fighter-info p {
  flex-grow: 1;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: #ff6666;
  font-weight: 600;
}

.stats-list li {
  background: #2b2b2b;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: inset 0 0 15px rgba(255, 59, 59, 0.15);
  transition: background-color 0.3s ease;
}

.stats-list li:hover {
  background-color: #ff3b3b22;
  color: #ff3b3b;
}

/* ============================
   VIDEO SECTION
   ============================ */
#video-section {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  text-align: center;
  color: #ddd;
}

#video-section h2 {
  color: #ff3b3b;
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

#video-section iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #0f0f0f;
}

.contact-form,
.contact-info {
  background-color: #181818;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 46, 46, 0.15);
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-form h3,
.contact-info h3 {
  color: #ff2e2e;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
  color: #ccc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #333;
  background-color: #222;
  color: white;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff2e2e;
  outline: none;
}

.contact-form .btn {
  display: inline-block;
  background-color: #ff2e2e;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s;
}

.contact-form .btn:hover {
  background-color: #d92424;
  transform: scale(1.05);
}

.contact-info p {
  color: #bbb;
  line-height: 1.6;
  margin: 8px 0;
}

.contact-info .socials a {
  color: #ff2e2e;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info .socials a:hover {
  color: white;
}

/* ============================
   PRODUCTEN PAGINA
   ============================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background-color: #0f0f0f;
}

.product {
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 59, 59, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.6);
}

.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  color: #ff3b3b;
  margin-bottom: 10px;
}

.product p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
  min-height: 50px;
}

.product .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6666;
  margin-bottom: 15px;
}

.product .btn {
  display: inline-block;
  background-color: #ff3b3b;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s;
}

.product .btn:hover {
  background-color: #d32f2f;
  transform: scale(1.05);
}

/* ============================
   CART PAGE
   ============================ */
.cart-container {
  max-width: 1200px;
  margin: 100px auto 50px;
  padding: 0 20px;
}

.cart-container h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff3b3b;
}

.cart-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 59, 59, 0.3);
}

.cart-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.cart-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-info h3 {
  color: #ff3b3b;
}

.cart-info .price {
  font-weight: bold;
  color: #ff6666;
}

.cart-info input[type="number"] {
  width: 60px;
  padding: 5px;
  border-radius: 6px;
  border: none;
  text-align: center;
}

.checkout-total {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.checkout-btn {
  background-color: #ff3b3b;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* ============================
   FOOTER
   ============================ */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
  font-size: 0.9rem;
  font-family: 'Anton', sans-serif;
}

/* ============================
   MEDIA QUERIES
   ============================ */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 40px 15px;
  }

  .cart-grid {
    flex-direction: column;
  }

  .checkout-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* Begin onzichtbaar en iets lager */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, filter 0.9s ease-out;
}

/* Wanneer zichtbaar: fade + slide up + blur weg */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* ==========================
   PAGINA START ANIMATIE
   ========================== */
body {
  opacity: 0;
  animation: fadeInPage 1s forwards;
}

@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================
   FADE-IN OP SCROLL
   ========================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   ALGEMENE STIJL
   ========================== */
body {
  font-family: 'Roboto', sans-serif;
  background: #0d0d0d;
  color: #eee;
  margin: 0;
  padding-top: 80px; /* reserveer ruimte voor de vaste header zodat inhoud niet eronder verdwijnt */
  scroll-behavior: smooth;
}

header {
  position: sticky;
  top: 0;
  background: rgba(18,18,18,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 59, 59, 0.4);
}

header h1 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: #ff3b3b;
}

nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover, nav a.active {
  color: #ff3b3b;
}

#hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 0; /* zorg dat de afbeelding zichtbaar blijft en niet achter body/bkg verdwijnt */
}

.hero-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  color: #ff3b3b;
  margin: 0;
}

main {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-container h2 {
  color: #ff3b3b;
  margin-bottom: 15px;
}

.info-container p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.bottom-row section {
  flex: 1 1 45%;
  min-width: 280px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 50px;
}
/* ======================
   Fighter Cards Basis
   ====================== */
.fighter-card {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none; /* voorkomt hover voor verborgen kaarten */
}

/* ======================
   Fade-in met subtiele bounce
   ====================== */
.fighter-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ======================
   Hover effect (pas als zichtbaar)
   ====================== */
.fighter-card.visible:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ======================
   Staggered effect
   ====================== */
.fighter-card:nth-child(1) { transition-delay: 0.1s; }
.fighter-card:nth-child(2) { transition-delay: 0.2s; }
.fighter-card:nth-child(3) { transition-delay: 0.3s; }
.fighter-card:nth-child(4) { transition-delay: 0.4s; }
.fighter-card:nth-child(5) { transition-delay: 0.5s; }
.fighter-card:nth-child(6) { transition-delay: 0.6s; }

.fighter-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* fade-in */
  pointer-events: none; /* voorkomt hover voordat zichtbaar */
}

/* Wanneer zichtbaar */
.fighter-card.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* hover weer mogelijk */
}

/* Hover alleen actief als card zichtbaar is */
.fighter-card.visible:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Start volledig onzichtbaar */
body {
  opacity: 0;
  transition: opacity 1s ease-in-out; /* smooth fade voor hele pagina */
}

/* Zodra de pagina geladen is, fade-in */
body.loaded {
  opacity: 1;
}
/* HERO TEKST UPGRADE */
.hero h2 {
  font-family: 'Anton', sans-serif;
  font-size: 4.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;

  background: linear-gradient(90deg, #ffffff, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.3),
    0 0 25px rgba(255, 59, 59, 0.4);
}

.hero p {
  font-size: 1.7rem;
  font-weight: 300;
  color: #f6f6f6;
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.hero {
  text-align: center;
  padding: 120px 20px;
  animation: heroFade 1.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* ============================
   CONTACT HERO TEKST UPGRADE
   ============================ */
.contact-hero {
  text-align: center;
  padding: 120px 20px;
  animation: contactHeroFade 1.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.contact-hero h2 {
  font-family: 'Anton', sans-serif;
  font-size: 4.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;

  background: linear-gradient(90deg, #ffffff, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 59, 59, 0.4);
}

.contact-hero p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #f6f6f6;
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-top: 0.5rem;
  opacity: 0.95;
}

/* Fade-in animatie */
@keyframes contactHeroFade {
  0% {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* ============================
   HOVER EFFECT VOOR EVENT BLOKKEN
   ============================ */
.cart-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor: poin  ter;
}

.cart-item:hover {
  transform: translateY(-10px) scale(1.03); /* tilt effect omhoog + iets groter */
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.5); /* glow/ombre effect */
  filter: brightness(1.05); /* iets feller */
}

/* Optioneel: smooth overgang voor alle kinderen */
.cart-item * {
  transition: inherit;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay */
.fade-in:nth-child(1).visible { transition-delay: 0.1s; }
.fade-in:nth-child(2).visible { transition-delay: 0.3s; }
.fade-in:nth-child(3).visible { transition-delay: 0.5s; }

