/* =================================================================
   FLANKSPELERS — stylesheet
   Fonts: Archivo (koppen) + Outfit (tekst)
   ================================================================= */

/* -----------------------------------------------------------------
   Basis / reset
   ----------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: #061431;
  color: #10222e;
  overflow-x: hidden;
}

a {
  color: #0066df;
  text-decoration: none;
}

a:hover {
  color: #061431;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: #0066df;
  color: #fff;
}

/* -----------------------------------------------------------------
   Gedeelde onderdelen
   ----------------------------------------------------------------- */
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  margin: 0 0 14px;
}
.eyebrow--blue { color: #0066df; }
.eyebrow--cyan { color: #00aeff; }

.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0;
}
.section-title--dark { color: #04102a; }
.section-title--light { color: #fff; }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(4, 16, 40, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.nav__logo img {
  height: 34px;
}

.nav__right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__link {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
}
.nav__link:hover {
  color: #fff;
}

/* "Alle merken" knop */
.btn-brands {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 9px 16px;
  border-radius: 8px;
  transition: all .2s;
}
.btn-brands:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.btn-brands__arrow {
  font-size: 17px;
}

/* Contact-knop in de nav */
.btn-contact {
  background: #fff;
  color: #04102a;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 24px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all .2s;
}
.btn-contact:hover {
  background: #00aeff;
  color: #04102a;
  transform: translateY(-1px);
}

/* Hamburger — alleen zichtbaar op mobiel (zie @media onderaan) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  border-radius: 2px;
}

/* =================================================================
   MOBIEL MENU
   ================================================================= */
.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(2, 8, 24, .5);
  backdrop-filter: blur(4px);
}

.mobile-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 61;
  width: min(82vw, 320px);
  background: #04102a;
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-bottom: 8px;
}

.mobile-menu__link {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu__contact {
  text-align: center;
  background: #fff;
  color: #04102a;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border-radius: 8px;
  margin-top: 14px;
}

.mobile-menu__brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  font-size: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  margin-top: 10px;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #001f89 0%, #0043b7 38%, #0066df 68%, #0090f0 100%);
  display: flex;
  align-items: stretch;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 45%, rgba(0, 174, 255, .5), transparent 55%);
  animation: glow 7s ease-in-out infinite;
}

.hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: end;
  padding: 130px 40px 0;
}

.hero__content {
  padding-bottom: 90px;
  animation: heroIn .9s cubic-bezier(.2, .8, .3, 1) both .1s;
}

.hero__logo {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 24px 48px rgba(0, 10, 40, .45));
}

.hero__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.08;
  letter-spacing: -.5px;
  color: #fff;
  text-transform: uppercase;
  margin: 32px 0 16px;
}

.hero__text {
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
  max-width: 470px;
  margin: 0 0 32px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #04102a;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .3px;
  padding: 17px 36px;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 10, 40, .35);
  transition: all .2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 10, 40, .45);
  color: #04102a;
}

.btn-outline {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 17px 26px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 10px;
  transition: all .2s;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.hero__photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: photoIn 1s cubic-bezier(.2, .8, .3, 1) both .3s;
}

.hero__photo {
  width: 100%;
  max-width: 440px;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 14%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 16%, black 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 14%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 16%, black 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  filter: drop-shadow(-20px 20px 60px rgba(0, 10, 40, .35));
}

.hero__badge {
  position: absolute;
  bottom: 36px;
  left: 0;
  background: rgba(4, 16, 40, .78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 12px 18px;
}
.hero__badge-name {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: .3px;
}
.hero__badge-role {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
}

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee {
  background: #04102a;
  border-top: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
  padding: 16px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 41s linear infinite;
}

.marquee__text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .65);
  white-space: nowrap;
  padding-right: 32px;
}

/* =================================================================
   OVER
   ================================================================= */
.over {
  background: #fff;
  padding: 130px 40px;
}

.over__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.over__rule {
  width: 64px;
  height: 5px;
  background: #0066df;
  margin-top: 26px;
}

.over__body {
  font-size: 19px;
  line-height: 1.75;
  color: #3a4a5c;
}
.over__body p {
  margin: 0 0 20px;
}
.over__body strong {
  color: #04102a;
}

.over__stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
}
.stat__num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: #0066df;
  margin: 0;
}
.stat__label {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #3a4a5c;
}

/* =================================================================
   OPTREDENS / ORIGINALS
   ================================================================= */
.originals {
  background: #f2f7fc;
  padding: 130px 40px;
}

.originals__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.originals__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 64px;
}

.originals__intro {
  max-width: 340px;
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a5c;
  margin: 0;
}

.originals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.event-card {
  background: #fff;
  border: 1px solid #dde8f2;
  border-radius: 16px;
  padding: 36px 30px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 50, 120, .12);
  border-color: #0066df;
}
.event-card__nr {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #0066df;
  letter-spacing: 2px;
  margin: 0 0 18px;
}
.event-card__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 23px;
  color: #04102a;
  margin: 0 0 12px;
  letter-spacing: -.3px;
}
.event-card__desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #3a4a5c;
}

/* =================================================================
   SFEER
   ================================================================= */
.sfeer {
  background: #04102a;
  padding: 130px 40px;
}

.sfeer__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.sfeer__head {
  margin-bottom: 64px;
}

.sfeer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.sfeer__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  transition: transform .25s;
}
.sfeer__item:hover {
  transform: scale(1.02);
}
.sfeer__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sfeer__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(4, 16, 40, .75);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 8px 14px;
  pointer-events: none;
}
.sfeer__caption p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* Placeholder tot er echte foto's zijn */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0043b7, #00aeff);
  color: rgba(255, 255, 255, .85);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  text-align: center;
  padding: 12px;
}

/* =================================================================
   TEAM
   ================================================================= */
.team {
  background: #fff;
  padding: 130px 40px;
}

.team__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.team__head {
  text-align: center;
  margin-bottom: 64px;
}

.team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.team-card {
  width: 250px;
  background: #fff;
  border: 1px solid #dde8f2;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all .25s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 50, 120, .12);
  border-color: #0066df;
}

.team-card__photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #0043b7, #00aeff);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__photo .photo-placeholder {
  font-size: 18px;
}

.team-card__name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #04102a;
  margin: 0 0 4px;
}
.team-card__role {
  margin: 0 0 16px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #0066df;
}

.team-card__socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #f2f7fc;
  border-radius: 10px;
  color: #04102a;
  transition: all .2s;
}
.social-icon:hover {
  background: #0066df;
  color: #fff;
}

/* =================================================================
   SOCIALS / CONTACT / FOOTER
   ================================================================= */
.contact {
  background: linear-gradient(135deg, #001f89 0%, #0043b7 45%, #0066df 100%);
  padding: 130px 40px 48px;
  position: relative;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 174, 255, .35), transparent 55%);
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.contact__logo {
  width: 300px;
  max-width: 70%;
  margin: 0 auto 36px;
  filter: drop-shadow(0 16px 32px rgba(0, 10, 40, .4));
}

.contact__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 54px);
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.contact__text {
  font-size: 19px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 40px;
}

.btn-contact-lg {
  display: inline-block;
  background: #fff;
  color: #04102a;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .3px;
  padding: 20px 48px;
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(0, 10, 40, .4);
  transition: all .2s;
}
.btn-contact-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 56px rgba(0, 10, 40, .5);
  color: #04102a;
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 56px;
}
.contact__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
  color: #fff;
  transition: all .2s;
}
.contact__social:hover {
  background: #fff;
  color: #0066df;
}

.contact__copy {
  margin: 64px 0 0;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
}

/* =================================================================
   SCROLL-REVEAL
   ================================================================= */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .8s ease, translate .8s cubic-bezier(.2, .8, .3, 1);
}
.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* =================================================================
   KEYFRAMES
   ================================================================= */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes photoIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes glow {
  0%, 100% { opacity: .55; }
  50%      { opacity: .85; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }
  .hero__content {
    padding-bottom: 40px;
  }
  .hero__photo-wrap {
    display: none;
  }
  .over__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .nav {
    padding: 14px 20px;
  }
  .nav__links {
    display: none;
  }
  .nav > .nav__right > .btn-brands {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .over,
  .originals,
  .sfeer,
  .team,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .btn-brands {
    padding: 8px 12px;
    font-size: 14px;
  }
  .over__stats {
    gap: 28px;
  }
}
