
/* -----------------------------
  Reset & Basis
  ----------------------------- */
/* Linker footer-section iets omhoog */
.footer-section:first-child {
  margin-top: -0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  overflow-x: hidden;
}

:root {
  --nav-offset: 120px;
}

main {
  padding-top: var(--nav-offset);
}

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

/* -----------------------------
  Navigatie
  ----------------------------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.app-button i {
  font-size: 2rem;
  margin-right: 0.75rem;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-image {
  display: flex;
  justify-content: center;
  margin: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #38b6ff;
  margin-left: -60px;
}

.logo-image {
  width: auto;
  height: 50px;
  margin-right: 0.5rem;
  border-radius: 4px;
  object-fit: contain;
  padding: 2px;
  vertical-align: middle;
  margin-top: 0;
}

#link-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #38b6ff;
}

.nav-download-mobile {
  display: none;
}

/* Kleine dropdown voor Over ons / Onze Missie links */
.nav-item {
  position: relative;
}

/* Navigation Layout Classes */
.nav-menu-layout {
  margin-left: 24px;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}

.nav-dropdown-relative {
  position: relative;
}

.nav-lang-layout {
  margin-left: 32px;
  margin-right: -60px;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-dropdown .nav-link {
  cursor: pointer;
  display: inline-block;
  padding: 6px 4px;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
  padding: 8px 0;
  min-width: 160px;
  display: none;
  z-index: 1200;
}

/* Hover-bridge zodat het menu niet dichtklapt in de 8px gap */
.nav-dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.nav-dropdown .dropdown-menu a:hover {
  background: #f1f8ff;
  color: #0b76c9;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

/* ook programmatisch openen via .open toestaan op touch-apparaten */
.nav-dropdown.open .dropdown-menu { 
  display: block; 
}

.cta-button {
  background: linear-gradient(135deg, #27c4d8, #2293f0);
  color: white !important;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: none;
  font-size: 1.2rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #1ba9ba;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Language select */
#language-select {
  padding: 8px 15px;
  border-radius: 25px;
  border: 2px solid #209eec;
  background-color: white;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

#language-select:hover {
  border-color: #209eec;
  color: #209eec;
  box-shadow: 0 4px 8px rgba(0, 145, 234, 0.3);
  transform: translateY(-2px);
}

#language-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 145, 234, 0.25);
}

/* Language select inline styling class */
.language-select-custom {
  padding: 6px 8px;
  border-radius: 4px;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* -----------------------------
   Hero
   ----------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f3f7fa;
  background-size: 100%;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 200px;
  justify-content: center;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: rgb(31, 30, 30);
  margin-bottom: 0.5rem;
}

.hero-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #4f5052;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.3rem;
  color: #4f5052;
  margin-bottom: 2rem;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin:auto;
}
.cta-section .app-buttons {
  justify-content: center;
}

.app-button {
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  background-image: linear-gradient(103deg, #03a9f4, #0288d1);
  margin: 3rem 0;
  min-width: 180px;
}
.app-button .fa-apple { 
  font-size: 2.6rem; 
}
.app-button:hover {
  background: linear-gradient(103deg, #03a9f4, #0289d1d5);
  transform: translateY(-2px);
}
.app-button i {
  font-size: 2rem;
  margin-right: 0.75rem;
}
.button-text {
  display: flex;
  flex-direction: column;
}
.button-text .small {
  font-size: 0.75rem;
  opacity: 0.8;
}
.button-text .large {
  font-size: 1rem;
  font-weight: 600;
}

.app-button-white {
  background: linear-gradient(white, rgba(240, 245, 247, 0.753));
  color: #00669c;
  border: none;
  box-shadow: 0 8px 20px rgba(11, 118, 201, 0.1);
}

.app-button-white:hover {
  background: linear-gradient(white, rgba(182, 230, 241, 0.95));
  box-shadow: 0 12px 30px rgba(11, 118, 201, 0.2);
}
.app-preview {
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* -----------------------------
  Cookiebanner
  ----------------------------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  display: flex;
  justify-content: center;
}

.cookie-banner__content {
  width: min(1300px, 100%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem 1.75rem;
}

.cookie-banner__title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #0f172a;
}

.cookie-banner__text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.cookie-banner__link {
  color: #2e97eb;
  text-decoration: none;
}

.cookie-banner__link:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.cookie-banner__button {
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-banner__button--accept {
  background: linear-gradient(135deg, #27c4d8, #2293f0);
  color: #ffffff;
  font-size: 1rem;
  min-width: 140px;
}

.cookie-banner__button--reject {
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1rem;
  min-width: 140px;
}

.cookie-banner__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.phone-mockup::before {
  /* top speaker notch background */
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56%;
  height: 34px;
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  z-index: 6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6), inset 0 -6px 12px rgba(255,255,255,0.02);
}

.phone-mockup::after {
  /* subtle top reflection */
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  border-radius: 6px;
  z-index: 7;
  pointer-events: none;
}

/* notch elements inside the mockup for camera + speaker hole */
.phone-mockup .notch-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: #1f2022;
  border-radius: 3px;
  z-index: 8;
}
.phone-mockup .notch-camera {
  position: absolute;
  top: 14px;
  left: calc(50% + 78px);
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #ffffff22, #000);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.4), inset 0 0 3px rgba(255,255,255,0.06);
  z-index: 8;
}
.hero-screenshot {
  width: 110%;
  height: 110%;
  object-fit: cover;
  display: block;
  margin: auto;
  padding: 2rem;
}

/* Video styling - telefoon frame */
.video-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(100, 200, 255, 0.03) 100%);
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.hero-video {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-videoclip {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  background: #000;
}

/* Scale mockup down gracefully on very small screens */
@media (max-width: 420px) {
  .phone-mockup { transform: scale(0.9); margin-top: 2.5rem; }
}

/* Standaard mockup-stijlen (geen foto-frame) */

/* -----------------------------
  Sectie: Algemeen & Inhoud
  ----------------------------- */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
}
.section-title, h1 h2 {
  text-align: center;
  margin: 0.5rem;
  padding: 1rem;
}

#mission {
  background: #f8fafc;
}
.mission-section{
  padding: 6rem 0;
}
.mission-section  .mission-article{
  padding: 1rem;
  height: auto;
  margin-bottom: 3rem;
  margin-top: 3rem;
  padding-bottom: 2.5rem;
}
/* Mission article icon styling: limit to max 200px and keep responsive */
.mission-article .mission-icon {
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
  text-align: center;
}

.mission-article {
  border-radius: 12px ;
  text-align: center;
}

.mission-article p {
  max-width: 980px;
  margin: 0 auto;
}

.mission-header-icon {
  display: none;
}

.data-mission-paragraphs {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  text-align: center;
}
.vision-article {
  height: auto;
  text-align: center;
} 
.vision-header {
  margin-bottom: 0.5rem;
}

.vision-article.card {
  padding-bottom: 2.5rem;
}

.vision-article p {
  max-width: 980px;
  margin: 0 auto;
}

.social-links-margin {
  margin-top: 1rem;
}

/* -----------------------------
   About page: verbeterde hero, kaarten en team-grid
   ----------------------------- */
.about-us {
  padding: 6rem 0;
  background: #f8fafc;
}

.about-us-section {
  max-width: 1200px;
  margin: auto;
  padding: 200px  20px  0 20px;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}
.about-text p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

 .about-hero {
  padding: 0 0 0 0;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: center;
}
.about-hero-text .muted {
  font-size: 1rem;
  color: #64748b;
  margin-top: 0.5rem;
}
.about-hero-image {
  width: 50%;
  border-radius: 50px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
  padding: 10px;
  margin: 50px;
}
.hero-actions { 
  display:flex; 
  justify-content: center;
  gap:0.8rem; 
  margin-top:1.25rem; 
}

p.muted {
  color: #64748b;
  text-align: center;
}

.about-core { padding: 3rem 0; }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.card { background: white; padding: 1.6rem; border-radius: 14px; box-shadow: 0 14px 36px rgba(2,6,23,0.06); }
.values-list { list-style: none; padding: 0; }
.values-list li { margin-bottom: 1rem; }

.lead { 
  display: flex;
  font-size: 1.5rem; 
  color: #475569; 
  line-height: 1.6; 
  margin-bottom: 1.5rem;
  justify-content: center;
  text-align: center;
}

.origin-section { 
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 0 0 0; 
  padding-bottom: 5rem;
}

.origin-section p {
  max-width: 800px;
  font-size: 1.2rem;
  color: #47515f;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}
.team-section {
  padding-top: 6rem;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}
.team-photo-group {
  text-align: center;
  margin: 0 0 3rem 0;
  padding: 20px;
}
.team-group-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(2,6,23,0.08);
  display: inline-block;
}

/* Grotere ronde foto op brede schermen */
@media (min-width: 900px) {
  .team-group-photo {
    width: 360px;
    height: 360px;
  }
}

/* Zorg dat op zeer smalle schermen de groepfoto duidelijk zichtbaar blijft */
@media (max-width: 420px) {
  .team-group-photo { width: 140px; height: 140px; }
}
.team-member.card { display:flex; flex-direction: column; gap:1rem; align-items:center; padding: 1rem; text-align: center; }
.team-photo { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; flex-shrink:0; }
.team-meta h4 { margin: 0 0 0.25rem 0; font-size: 1.05rem; }
.team-meta p { margin: 0; color: #64748b; font-size: 0.95rem; }
.team-bio { margin-top: 0.35rem; color: #526071; font-size: 0.93rem; line-height: 1.45; }
.team-bio br { display: block; margin: 0.25rem 0; }

/* Testimonials */
.testimonials-section { padding: 11rem 0 4rem; background: #ffffff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 1rem; }
.testimonial-card { display:flex; flex-direction:column; gap:1rem; }
.testimonial-quote { font-style: italic; color: #0f172a; font-size: 1rem; line-height: 1.5; }
.testimonial-meta { display:flex; gap:0.8rem; align-items:center; margin-top:0.5rem; }
.testimonial-photo { width:64px; height:64px; border-radius:12px; object-fit:cover; flex-shrink:0; }
.testimonial-meta-text strong { display:block; color:#1e293b; }
.testimonial-role { color:#64748b; font-size:0.95rem; }
.testimonial-key { margin-top:0.35rem; color:#0b76c9; font-weight:600; font-size:0.95rem; }

@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* Modal styles for testimonials */
.modal { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1400; }

.modal-hidden {
  display: none;
}

.modal-backdrop { position: absolute; inset: 0; background: rgba(2,6,23,0.5); }
.modal-dialog { position: relative; width: 90%; max-width: 720px; margin: 1rem; }
.modal-content { background: white; border-radius: 12px; padding: 1.6rem; box-shadow: 0 20px 60px rgba(2,6,23,0.2); }
.modal-close { position: absolute; right: 12px; top: 12px; background: transparent; border: none; font-size: 1.2rem; cursor: pointer; }
.modal-quote { font-style: italic; color: #0f172a; font-size: 1.1rem; margin-bottom: 0.8rem; }
.modal-message { color: #475569; line-height: 1.6; margin-bottom: 0.8rem; }
.modal-meta strong { display:block; margin-top:0.6rem; }

@media (max-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-media { order: -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

.how-it-works {
  padding: 2rem 0;
  background: #f8fafc;
}

.download-section  h2 p{
  padding: 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(100, 200, 255, 0.03) 100%);
  text-align: center;
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #38b6ff, #2e97eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #38b6ff, #2e97eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon img {
  display: block;
  max-width: 35px;
  max-height: 35px;
  margin: auto;
}

.step-icon1 img {
  display: block;
  max-width: 50px;
  max-height: auto;
  margin: auto;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.step p {
  color: #64748b;
  font-size: 1.1rem;
}

.sports-categories {
  padding: 2rem 0;
  background: white;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.sport-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.sport-card:hover {
  background: linear-gradient(90deg, #38b6ff, #2e97eb);
  transform: translateY(-5px);
  color: white;
}
.sport-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  position: relative;
  width: 99px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.sport-icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}
.sport-icon-inline {
  width: 160px;
  height: 140px;
}
.sport-icon img.icon-white {
  display: none;
}
.sport-card:hover .sport-icon img.icon-default {
  display: none;
}
.sport-card:hover .sport-icon img.icon-white {
  display: block;
}
.sport-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
}

.features {
  padding: 2rem 0;
  background: #f8fafc;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #38b6ff, #2e97eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.feature-icon i {
  font-size: 2rem;
  color: white;
}
.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}
.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(90deg, #38b6ff, #2e97eb);
  text-align: center;
  color: white;
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 3rem 1rem;
  margin: 0;
}
.cta-section p {
  font-size: 1.2rem;
  margin: 1rem;
  opacity: 0.9;
}

/* -----------------------------
  Contactpagina: stijlen
  ----------------------------- */
.contact-section {
  padding: 2rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}
.contact-form-wrap { max-width: 820px; }
.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(14, 30, 37, 0.06);
  border: 1px solid rgba(14,30,37,0.04);
}
.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #0f172a;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #e6eef6;
  background: #ffffff;
  margin-bottom: 1rem;
  color: #0f172a;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #38b6ff;
  box-shadow: 0 8px 20px rgba(56,182,255,0.08);
}
.form-row { display:flex; align-items:center; gap:0.6rem; margin-bottom: 1rem; color:#475569; }
.form-row input[type="checkbox"] { transform: scale(1.05); }
.form-actions { display:flex; gap:1rem; align-items:center; margin-top:1rem; }
.secondary { background:#f1f5f9; color:#0f172a; padding:.75rem 1rem; border-radius:10px; border:none; cursor:pointer; text-decoration: none; }
.secondary:hover { transform: translateY(-2px); }

.contact-form .cta-button,
.contact-form .secondary {
  font-size: 1.1rem;
}

.contact-form .cta-button {
  border: none;
}

.contact-info {
  background: linear-gradient(180deg,#ffffff,#f8fafc);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(14,30,37,0.04);
  width: 380px;
}
.contact-info h2 { margin-top: 0; color:#0f172a; }
.contact-info p, .contact-info a { color:#475569; }
.contact-info a { text-decoration: none; color: #2e97eb; }

/* kleine status-toast (overschrijft copy-toast voor betere zichtbaarheid) */
.copy-toast { transition: opacity .25s ease; opacity: 0; color: #16a34a; margin-top: 0.5rem; }
.copy-toast.show { opacity: 1; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { order: 1; }
  .contact-info { order: 2; }
}

/* -----------------------------
  Schermen / Apparaat-mockups
  ----------------------------- */
.screens {
  padding: 6rem 0;
  background: #fff;
}
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}
.screen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.device {
  width: 340px;
  height: 700px;
  background: linear-gradient(145deg, #0f0f10, #232427);
  border-radius: 46px;
  padding: 14px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.2),
    0 6px 18px rgba(0, 0, 0, 0.2) inset;
  overflow: hidden;
  position: relative;
  border: 2px solid #1b1b1d;
}
.device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 24px;
  display: block;
}
.screen-item figcaption {
  font-weight: 600;
  color: #1e293b;
  text-align: center;
}
.device::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 26px;
  background: #0b0b0c;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}
.device::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 140px;
  width: 4px;
  height: 90px;
  background: #1b1b1d;
  border-radius: 2px;
}
.device .btn-volume {
  position: absolute;
  left: -2px;
  top: 120px;
  width: 4px;
  height: 60px;
  background: #1b1b1d;
  border-radius: 2px;
}
.device .btn-silent {
  position: absolute;
  left: -2px;
  top: 90px;
  width: 4px;
  height: 22px;
  background: #1b1b1d;
  border-radius: 2px;
}
.device .notch-speaker {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: #1f2022;
  border-radius: 3px;
}


/* -----------------------------
  Voettekst
  ----------------------------- */
.footer {
  background: #1e293b;
  color: white;
  padding: 4rem 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section {
  color: #cbd5e1;
}
.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1.2rem;
  margin-top: 0.2rem;
}
.footer-logo .logo-image {
  width: auto;
  height: 35px;
  margin-right: 0.5rem;
  object-fit: contain;
}
.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e2e8f0;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color: #38b6ff;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #38b6ff;
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

@media (max-width: 1024px) {
  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .screens-grid {
    grid-template-columns: 1fr;
  }
  .device {
    width: 280px;
    height: 560px;
    padding: 10px;
  }
  .device::before {
    top: 6px;
  }
  .device .notch-speaker {
    top: 10px;
  }
  .device img {
    width: 92%;
    height: 92%;
    margin: 4% auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
  }
  .phone-mockup {
    width: 280px;
    height: 560px;
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .device {
    width: 220px;
    height: 440px;
    padding: 8px;
  }
  .device::before {
    top: 5px;
  }
  .device .notch-speaker {
    top: 9px;
  }
  .device img {
    width: 90%;
    height: 90%;
    margin: 5% auto;
    border-radius: 18px;
  }
  .phone-mockup {
    width: 220px;
    height: 440px;
    padding: 8px;
  }
}

/* Contact Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
  backdrop-filter: blur(2px);
}
/* Responsive Navigation */
@media (max-width: 900px) {
  :root {
    --nav-offset: 90px;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .nav-container {
    padding: 0 16px;
  }
  .nav-logo {
    margin-left: 0;
  }
  .logo-image {
    height: 40px;
  }
  .nav-lang-layout {
    margin-left: 12px;
    margin-right: 0;
    gap: 0.5rem;
  }
  .nav-lang-layout .cta-button {
    display: none;
  }
  #language-select {
    padding: 6px 10px;
    font-size: 12px;
  }
  .nav-menu {
    position: fixed;
    top: 56px;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    gap: 0;
    width: 220px;
    padding: 1.5rem 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    align-items: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu a {
    padding: 0.85rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    color: #333;
  }
  .nav-dropdown .nav-link {
    display: block;
    padding: 0.85rem 1.5rem;
    width: 100%;
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    margin: 0 0 0.5rem;
    background: transparent;
  }
  .nav-dropdown .dropdown-menu a {
    padding: 0.75rem 1.5rem;
  }
  .cta-button {
    margin: 1rem 2rem;
  }
  .nav-download-mobile {
    display: block;
    width: min(180px, calc(100% - 2rem));
    margin: 0.5rem auto 0;
    text-align: center;
    align-self: center;
    box-sizing: border-box;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 500px) {
  .nav-logo span {
    font-size: 1.1rem;
  }
  .logo-image {
    height: 34px;
  }
  .nav-menu {
    width: 100vw;
    top: 52px;
  }
}
.contact-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-modal-content {
  background: #fff;
  color: #0f172a;
  width: min(520px, 92vw);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
  transform: translateY(8px) scale(0.98);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.contact-modal.open .contact-modal-content {
  transform: translateY(0) scale(1);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28);
}
.contact-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #475569;
}
.contact-header i {
  font-size: 2rem;
  color: #2e97eb;
  background: #e6f4ff;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.contact-header h3 {
  margin: 0.25rem 0;
  font-size: 1.5rem;
}
.contact-header p {
  color: #64748b;
}
.contact-body {
  margin-top: 1rem;
}
.contact-email {
  display: inline-block;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  border: 2px dashed #cbd5e1;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}
.contact-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.contact-actions .primary {
  background: linear-gradient(90deg, #38b6ff, #2e97eb);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}
.contact-actions .secondary {
  background: #f1f5f9;
  color: #0f172a;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.copy-toast {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #16a34a;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.copy-toast.show {
  opacity: 1;
}

/* Extra responsive styles for mobile */
@media (max-width: 700px) {
  .container {
    padding: 0 8px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 8px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text h2 {
    font-size: 1.2rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .app-buttons {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    margin-left: 0 !important;
  }
  .app-button {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 0.5rem;
    margin: 0.25rem 0;
  }
  .steps-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step {
    padding: 1.2rem;
  }
  .sports-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .sport-card {
    padding: 1.2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .feature-card {
    padding: 1.2rem;
  }
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .footer-logo {
    font-size: 1.1rem;
  }
  .footer-section h4 {
    font-size: 1rem;
  }
  .screens-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  header h1,
  header p {
    text-align: left;
    padding-left: 0;
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .hero-image {
    margin-top: 2rem;
  }
  .phone-mockup {
    width: 240px;
    height: 496px;
  }
  .phone-screen {
    border-radius: 20px;
  }
}
@media (max-width: 700px) {
  .hero-text {
    padding-top: 4.5rem;
  }
}

/* =====================================================================
  Blog
  ===================================================================== */
.blog-hero {
  padding: 2rem;
  background: linear-gradient(135deg, #f3f7fa 0%, #e8f4f8 100%);
  text-align: center;
  height: 300px;
}

.blog-hero-content h1 {
  margin-bottom: 1rem;
  color: #1e293b;
}

.blog-hero-content .lead {
  color: #64748b;
  font-size: 1.1rem;
}

.blog-section {
  margin-bottom: 2rem;
  background: #ffffff;
}
.blog-image {
  border-radius: 12px;
  object-fit: cover;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.12);
}

.blog-card-featured {
  grid-column: 1 / -1;
}

.blog-card-featured .blog-image {
  height: 300px;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.blog-excerpt {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.blog-date {
  color: #94a3b8;
}

.blog-category {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 500;
}

.blog-read-more {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.back-to-blog {
  display: inline-block;
  margin-top: 2rem;
  color: #2e97eb;
  text-decoration: none;
  font-weight: 600;
}
.back-to-blog:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    padding: 120px 20px;
  }
  .blog-section {
    padding: 4rem 0;
  }
}

/* Article page styles */
.article-container {
  padding: 6rem 0;
}

.article-container article h1 {
  margin-bottom: 1rem;
  font-size: 2.8rem;
}

.article-container .muted {
  margin-bottom: 2rem;
  color: #475569;
  font-size: 1rem;
}

/* Focus and keyboard visibility improvements */
:focus {
  outline: 3px solid rgba(37,99,235,0.95);
  outline-offset: 2px;
}

a:focus, button:focus, .hamburger:focus, .nav-menu a:focus {
  outline: 3px solid rgba(37,99,235,0.95);
  outline-offset: 2px;
}

/* Make muted text slightly darker for better contrast */
.article-container .muted {
  color: #475569;
}

/* Ensure interactive elements have visible focus for keyboard users */
.nav-menu a, .cta-button, .app-button, .language-select-custom {
  transition: box-shadow 0.15s ease, transform 0.12s ease;
}
.nav-menu a:focus, .cta-button:focus, .app-button:focus, .language-select-custom:focus {
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

.article-container .content {
  margin-top: 2rem;
}

.article-container .content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.article-container .content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-image {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.photo-placeholder {
  background: #e0e0e0;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #999;
  overflow: hidden;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder p {
  text-align: center;
}

/* Lightbox styles */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 2001;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: #ddd;
}

.photo-placeholder img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.photo-placeholder img:hover {
  transform: scale(1.05);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
