@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
  background-color: #050505;
  color: #fff;
}
/* LOGO SLIDER ---------------------------------------------*/
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  will-change: transform;
}

.logo-item {
  flex: 0 0 auto;
  width: 120px;          /* same visual width */
  height: 46px;          /* same visual height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* keeps aspect ratio */
  display: block;
  filter: brightness(0) invert(0);
}

/* PAGE TYPES ------------------------------------------------- */

.products-page, 
.contact-page,
.product-detail-page{
  background-color: #ffffff;
  color: #111;
}

/* BASIC ELEMENTS -------------------------------------------- */

img{
  max-width: 100%;
  display: block;
}

a{
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

a:hover{
  color: #ff6600;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ANIMATIONS ------------------------------------------------- */

@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSlow{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
/* HEADER ----------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  animation: fadeInSlow 0.8s ease forwards;
}

.inner-page .site-header,
.product-detail-page .site-header {
  position: static;
  background-color: #050505;
}
.header-icon i {
  color: #ffffff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LEFT: NAVIGATION ----------------------------------------------------- */
.main-nav {
  flex: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5f5f5;
  opacity: 0.85;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: width 0.25s ease;
}

.main-nav a.active,
.main-nav a:hover {
  opacity: 1;
  color: #ff6600;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* CENTER: LOGO ----------------------------------------------------- */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 32px;
}

/* RIGHT: FACEBOOK + CONTACT BUTTON ----------------------------------------------------- */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-icon {
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.header-icon:hover {
  background-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* CONTACT BUTTON ----------------------------------------------------- */
.contact-btn {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid #ff6600;
  border-radius: 4px;
  color: #ff6600;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-btn:hover {
  background-color: #ff6600;
  color: #050505;
}

/* BURGER BUTTON (desktop: hidden) ------------------------------------- */
.burger {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  border: none;
  background: none;
  padding: 0;
  margin-left: 16px;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #f5f5f5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

/* Cross state wanneer menu open is */
body.nav-open .burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.nav-open .burger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .burger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}


/* ===========================
   MOBILE HEADER (≤ 768px)
=========================== */
@media (max-width: 768px) {

  /* Sticky, bovenop content, met zwarte → transparante gradient */
  .site-header,
  .inner-page .site-header,
  .product-detail-page .site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%
    );
    padding: 0;
    margin: 0;
  }

  /* 3 kolommen: links (leeg), logo midden, burger rechts */
  .header-inner {
    max-width: 100%;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  /* Logo netjes gecentreerd en kleiner */
  .logo {
    grid-column: 2;
    justify-self: center;
    position: relative;
    left: auto;
    transform: none;
  }

  .logo img {
    height: 24px;
  }

  /* Icons/contact alleen op desktop, niet op mobiel */
  .header-right {
    display: none;
  }

  /* Burger tonen rechts */
  .burger {
    display: block;
    grid-column: 3;
    justify-self: end;
    z-index: 110;
  }

  /* Mobile nav overlay */
  .main-nav {
    position: fixed;
    inset: 0;
    background-color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 90;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .main-nav a {
    font-size: 16px;
    letter-spacing: 3px;
  }

  /* Toon nav wanneer body.nav-open */
  body.nav-open .main-nav {
    transform: translateY(0);
  }

  /* Content wat extra ruimte bovenin geven zodat het niet "plakt" */
  main,
  .product-detail-main,
  .page-wrapper {
    padding-top: 8px; /* klein beetje, header is sticky, geen grote offset nodig */
  }
}
/* Hide contact button inside nav on desktop */
.mobile-contact-btn {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-contact-btn {
    display: inline-block;
  }
}


/* CONTACT BUTTON ----------------------------------------------------- */
.contact-btn {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid #ff6600;
  border-radius: 4px;
  color: #ff6600;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-btn:hover {
  background-color: #ff6600;
  color: #050505;
}

/* BUTTONS ---------------------------------------------------- */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn.primary{
  background-color: #ff6600;
  color: #fff;
}

.btn.primary:hover{
  background-color: #ff7a22;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn.ghost{
  background-color: transparent;
  border-color: #111;
  color: #111;
}

.btn.ghost:hover{
  background-color: #111;
  color: #fff;
  transform: translateY(-2px);
}

.btn.full{
  width: 100%;
}

/* HERO (HOME) ----------------------------------------------- */

.hero{
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#bg-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.9)
  );
  z-index: -1;
}

.hero-content{
  max-width: 700px;
  padding: 0 20px;
  animation: fadeUp 0.9s ease-out 0.2s both;
}

.hero-kicker{
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ff6600;
  margin-bottom: 12px;
}

.hero h1{
  font-size: 64px;
  margin: 0 0 24px;
  letter-spacing: 4px;
}

.hero-btn{
  margin-top: 6px;
}

/* SECTION TITLES -------------------------------------------- */

.section-title{
  text-align: left;
  max-width: 550px;
  margin-bottom: 60px;
}

.section-title .subtitle,
.subtitle{
  text-transform: uppercase;
  color: #ff6600;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.subtitle h2{
  text-transform: uppercase;
  color: #ff6600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.section-title h2{
  font-size: 2.6rem;
  line-height: 1.3;
  color: #111;
  margin: 0;
}

/* SHOOTING CLASSES (HOME) ----------------------------------- */

.shooting-classes{
  background-color: #ffffff;
  color: #111;
  padding: 40px 0 100px;
}

.classes-images{
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.classes-images .image-left,
.classes-images .image-right{
  flex: 1;
}

.classes-images .image-left img{
  width: 100%;
  max-width: 340px;
  animation: fadeUp 0.8s ease-out both;
}

.classes-images .image-right img{
  width: 100%;
  max-width: 520px;
  animation: fadeUp 0.8s ease-out 0.15s both;
}

.classes-images .description{
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin-top: 18px;
  line-height: 1.6;
}

.illustration{
  margin: 10px 0 80px;
}

.illustration img{
  max-width: 160px;
  opacity: 0.6;
}


/* UNIT SECTION ---------------------------------------------- */

.unit-section{
  background-color: #ffffff;
  color: #111;
  padding: 0 0 70px;

  position: relative;
  overflow: hidden;
}

/* keep all real content above the background image */
.unit-section .container,
.unit-stats{
  position: relative;
  z-index: 2;
}

/* PARALLAX decorative image pinned bottom-right */
.unit-bg{
  position: absolute;
  right: -80px;
  bottom: -60px;
  z-index: 1;
  pointer-events: none;
  user-select: none;

  width: min(820px, 70vw);
  height: auto;
  opacity: 0.22;

  /* parallax performance */
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* optional: hide on very small screens */
@media (max-width: 520px){
  .unit-bg{ display: none; }
}

.unit-container{
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.unit-text h2{
  font-size: 2.4rem;
  margin: 0 0 20px;
}

.unit-body{
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.unit-buttons{
  display: flex;
  gap: 16px;
}

.unit-image img {
  border-radius: 8px;
  width: 50vw;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.unit-image img:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


.unit-stats{
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 0 0;
}

.stat{
  text-align: center;
}

.stat-number{
  display: block;
  font-size: 2.2rem;
  color: #ff6600;
  margin-bottom: 5px;
}

.stat-label{
  font-size: 0.75rem;
  letter-spacing: 3px;
}
/*CURSOR CODE-----------------------------------------------*/


.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2147483647;

  mix-blend-mode: difference;
}

.cursor-cross {
  position: absolute;
  background: #ff6600
}

.cursor-cross.vertical {
  width: 2px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cursor-cross.horizontal {
  height: 2px;
  width: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* HIDE CUSTOM CURSOR ON TOUCH DEVICES */
@media (hover: none) and (pointer: coarse) {
  html, body {
    cursor: auto;
  }

  .custom-cursor {
    display: none !important;
  }
}


/* TESTIMONIALS ---------------------------------------------- */

.testimonials-section{
  background-color: #111;
  color: #fff;
  padding: 100px 0;
}

.testimonial-container{
  display: flex;
  align-items: center;
  gap: 60px;
}

.testimonial-text h2{
  font-size: 2.4rem;
  margin: 0 0 20px;
}

.quote-text{
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 30px;
}

.client-meta {
  display: flex;
  flex-direction: column;
  gap: 4px; /* space between name+image and role */
}

/* Flex container for profile image + name */
.client-profile {
  display: flex;
  align-items: center;
  gap: 4px; /* spacing between image and name */
}

.client-profile .client-name {
  margin: 0;
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: bold;
}

.client-meta .client-role {
  margin: 0px 0 0;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #aaa;
}

.client-profile .profile-img {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  object-fit: cover;
}




.testimonial-image img{
  border-radius: 8px;
  width: 50vw;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-image img:hover{
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* CONTACT TEASER (HOME) ------------------------------------- */

.contact-teaser{
  background-color: #ffffff;
  color: #111;
  padding: 80px 0;
}

.contact-teaser-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-body{
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* PRODUCTS PAGE --------------------------------------------- */

.products-main{
  padding-top: 80px;
}

.products-hero{
  background-color: #ffffff;
  padding: 80px 0 40px;
  border-bottom: 1px solid #eee;
}

.products-hero h1{
  font-size: 2.8rem;
  margin: 0 0 8px;
}

.products-hero p{
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.products-grid-section{
  background-color: #ffffff;
  padding: 60px 0 90px;
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.product-card{
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 18px 22px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.7s ease-out both;
}

.product-card:nth-child(2){ animation-delay: 0.05s; }
.product-card:nth-child(3){ animation-delay: 0.1s; }
.product-card:nth-child(4){ animation-delay: 0.15s; }
.product-card:nth-child(5){ animation-delay: 0.2s; }
.product-card:nth-child(6){ animation-delay: 0.25s; }

.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* Weapon placeholder 3.png -> 4.png on hover */
.weapon-image{
  width: 100%;
  aspect-ratio: 4 / 3;
  background-image: url("assets/3.png");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: background-image 0.3s, transform 0.3s;
}

.product-card:hover .weapon-image{
  background-image: url("assets/4.png");
  transform: translateY(-3px);
}

.product-card h2{
  font-size: 1.2rem;
  margin: 4px 0;
}

.product-card p{
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 4px;
}

.product-card .price{
  font-size: 1rem;
  color: #ff6600;
  margin-bottom: 6px;
}

/* PRODUCT DETAIL PAGES -------------------------------------- */

.product-detail-main{
  padding-top: 80px;
}

.product-detail-hero{
  padding: 80px 0 30px;
  border-bottom: 1px solid #eee;
  background-color: #ffffff;
}

.product-detail-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center; /* ⭐ Center horizontally */
  text-align: center;      /* ensures text inside the slider block centers visually */
}

.product-detail-hero img{
  border-radius: 10px;
  max-width: 460px;
}

.product-detail-info h1{
  font-size: 2.6rem;
  margin: 0 0 10px;
}

.product-detail-info .badge{
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: #111;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.product-detail-info p{
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.product-detail-info .price{
  display: block;
  margin-top: 14px;
  font-size: 1.2rem;
  color: #ff6600;
}

.product-detail-meta{
  padding: 40px 0 80px;
}

.product-specs{
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(0,1.5fr);
  gap: 40px;
}

.product-specs ul{
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #555;
}

.product-specs ul li + li{
  margin-top: 6px;
}

.spec-table{
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #555;
}

.spec-table th,
.spec-table td{
  border-bottom: 1px solid #eee;
  padding: 8px 6px;
  text-align: left;
}

.spec-table th{
  width: 40%;
  font-weight: 600;
}

/* ===========================
   CONTACT PAGE (UPDATED)
=========================== */

.contact-section{
  background-color: #ffffff;
  padding: 60px 0 90px;
}

/* FORCE EQUAL HEIGHT COLUMNS */
.contact-container{
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1.5fr);
  gap: 60px;
  align-items: stretch; /* 🔑 makes both sides equal height */
}

/* LEFT SIDE stretches naturally */
.contact-text{

  flex-direction: column;
  justify-content: space-between;
}

/* RIGHT SIDE: make form fill full height */
.contact-form-wrapper{
  display: flex;
}

.contact-form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px 20px;

  width: 100%;
  height: 100%; /* 🔑 same height as left */
  align-content: space-between; /* spreads fields nicely */

  background-color: #ffffff;
  border-radius: 14px;
  padding: 24px 24px 26px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

/* BUTTON STAYS AT BOTTOM */
.contact-form .full-row:last-child{
  margin-top: auto;
}

.contact-text .subtitle{
  display: inline-block;
}

.contact-text h2{
  font-size: 2.4rem;
  margin: 0 0 18px;
  color: #111;
}

.contact-text .contact-body{
  max-width: 520px;
  margin: 0 auto 18px;
}

/* Keep the cards nicely centered as a group */
.enhanced-contact{
  display: grid;
  gap: 18px;
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  animation: fadeUp 0.6s ease both;
  text-align: left; /* cards remain readable */
}

/* ✅ Make phone/email/location/clock icons look like WhatsApp/Facebook (bordered circle) */
.contact-item i{
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #ff6600;

  border: 1px solid rgba(0,0,0,0.18);
  background-color: #000000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 2px;

  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover i{
  transform: scale(1.06);
  background-color: #ff7b00;
  border-color: #ff7b00;
  color: #050505;
}

.contact-item span{
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}

.contact-item p{
  margin: 4px 0 0;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Social icons already good — keep aligned and centered */
.contact-social{
  display: flex;
  justify-content: flex-start; /* 👈 left align */
  gap: 16px;
  margin-top: 14px;
}


.contact-social a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #000000;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-social a i{
  color: rgb(240, 240, 240);
  font-size: 24px;
}

.contact-social a:hover{
  transform: scale(1.1);
  background-color: #ff7b00;
}

/* ===========================
   FORM (BETTER LOOK)
=========================== */

.contact-form-wrapper{
  margin-top: 100px;
  flex: 1;
}

/* cleaner panel, subtle border, nicer spacing */
.contact-form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px 20px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 24px 24px 26px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form .full-row{
  grid-column: 1 / -1;
}

.contact-label{
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 12px 14px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: #ff6600;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255,102,0,0.15);
}

.form-row textarea{
  resize: vertical;
  min-height: 140px;
}

/* nicer button inside form */
.contact-form .btn.primary.full{
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
}

/* ===========================
   FAQ (CENTERED + CLEANER)
=========================== */

.faq-section{
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.faq-section h2{
  font-size: 2.4rem;
  margin-bottom: 34px;
  color: #111;
}

/* center container list */
.faq-list{
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid #eee;
}

/* better accordion card feel */
.faq-item{
  border-bottom: 1px solid #eee;
  padding: 2px 0;
}

.faq-question{
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #111;
}

.faq-question span{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0,0,0,0.12);
  background: #fafafa;
  color: #ff6600;

  transition: transform 0.3s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.faq-item.open .faq-question span{
  background-color: #ff6600;
  border-color: #ff6600;
  color: #fff;
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p{
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #555;
  padding: 0 0 16px;
  line-height: 1.6;
}

/* RESPONSIVE: make form single column on smaller widths */
@media (max-width: 992px){
  .contact-container{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px){
  .contact-form{
    grid-template-columns: 1fr;
    padding: 20px;
  }
}


/* FOOTER ----------------------------------------------------------- */
.site-footer {
  background-color: #050505;
  color: #ccc;
  padding: 50px 0 20px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

/* Logo & tagline */
.footer-logo {
  width: 130px;
  opacity: 0.85;
  display: block;
  margin: 0 auto;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #aaa;
  letter-spacing: 1px;
}

/* Columns */
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ff6600;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  margin: 0 5px;
  color: #ccc;
  font-size: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  background: #ff6600;
  border-color: #ff6600;
  color: #050505;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8rem;
  color: #777;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 10px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .footer-col ul li {
    margin-bottom: 6px;
  }
}


/* RESPONSIVE ------------------------------------------------- */

@media (max-width: 992px){
  .header-inner{
    padding: 16px 20px;
  }

  .hero h1{
    font-size: 48px;
  }

  .classes-images{
    flex-direction: column;
    gap: 30px;
  }

  .unit-container{
    flex-direction: column;
  }

  .unit-stats{
    gap: 40px;
  }

  .testimonial-container{
    flex-direction: column;
  }

  .contact-teaser-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .product-specs{
    grid-template-columns: 1fr;
  }

  .contact-container{
    grid-template-columns: 1fr;
  }
}



@media (max-width: 576px){
  .hero{
    min-height: 520px;
  }

  .hero h1{
    font-size: 36px;
  }

  .section-title h2{
    font-size: 2rem;
  }


  .products-grid{
    grid-template-columns: 1fr;
  }

  .unit-stats{
    flex-wrap: wrap;
    gap: 24px;
  }
}
/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-logo img {
  max-width: 140px;
  height: auto;
  animation: logoPulse 1.4s ease-in-out infinite;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.75));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
}

.preloader--hide {
  opacity: 0;
  visibility: hidden;
}

/* ========== SCROLL FADE-IN ========== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* BURGER BUTTON (desktop: verborgen) ---------------------------------- */
.burger {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 30; /* boven de nav */
}

.burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #f5f5f5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger span:nth-child(3) {
  bottom: 0;
}

/* Cross-state als menu open is */
body.nav-open .burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.nav-open .burger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .burger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 768px) {

  /* FIXED MOBILE HEADER (no padding at all) */
  .site-header,
  .inner-page .site-header,
  .product-detail-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 20px 0 20px !important;
background: linear-gradient(to bottom, rgba(0,0,0,1) 100%, rgba(0,0,0,0) 100%);
    margin: 0 !important;
  }
  .header-inner {
    max-width: 100%;
    height: 60px;                
    padding: 0 !important;       
    display: flex;
    align-items: center;
    justify-content: flex-end;   /* burger naturally at right */
    position: relative;           /* for absolute logo */
  }
  
  /* Center logo ignoring burger */
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    display: block;
  }
  
  .logo img {
    height: 18px;
  }
  
  /* Keep burger on right */
  .burger {
    position: relative; 
    z-index: 30;
    margin-left: auto; /* ensures it's right-most in flex */
  }
  

  /* MOBILE NAV OVERLAY */
  .main-nav {
    position: fixed;
    inset: 0;
    background-color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 25;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .main-nav a {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .header-right {
    display: none;
  }

  .burger {
    display: block;
  }

  /* ONLY main content pushes down — not the header */
  main,
  .product-detail-main,
  .page-wrapper {
  }
}

/* PRODUCT SLIDER --------------------------------------------------- */
.product-slider {
  position: relative;
  width: 100%;
  max-width: 520px;   /* adjust to taste */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

.product-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.product-slider .slide.active {
  opacity: 1;
  position: absolute;
}

.product-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ARROWS ----------------------------------------------------------- */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 4px;
  transition: background 0.25s ease;
}

.slide-btn:hover {
  background: rgba(0,0,0,0.55);
}

.slide-btn.prev {
  left: 10px;
}

.slide-btn.next {
  right: 10px;
}
<!-- CSS -->
<style>
#coming-soon-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

#coming-soon-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  max-width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

#coming-soon-popup.active .popup-content {
  transform: scale(1);
}

.popup-content button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background: #ff6600;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.popup-content button:hover {
  transform: scale(1.05);
}
/* Initial hidden state */
.fade-frame {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* Visible state */
.fade-frame.is-visible {
  opacity: 1;
  transform: translateY(0);
}
