/* =======================
   ALGEMENE STIJL
======================= */

html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #e5e5e5;
  background-color: #0b0c10;
  overflow-x: hidden;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  margin: 0;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =======================
   NAVBAR
======================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0a0a0a 0%, #11161b 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.navbar-logo {
  height: 40px;
  width: auto;
}

.logo-section a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.logo-section a:hover {
  opacity: 0.8;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar nav a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.navbar nav a:hover {
  color: #1e90ff;
}



/* Hamburger standaard verbergen (desktop) */
.menu-toggle {
  display: none;
}

.hero {
  margin-top: 0;
}

/* =======================
   HERO
======================= */

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.808) 100%
    ),
    url('afbeeldingen/1.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: 80px;
}

.hero .logo {
  width: 420px;
  max-width: 80%;
  margin-bottom: 1rem;
  z-index: 1;
  animation: zoomIn 1s ease forwards;
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero h1 {
  color: #1e90ff;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  z-index: 1;
}

.hero p {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: #d0d0d0;
}

/* =======================
   WHATSAPP KNOP
======================= */

.whatsapp-btn {
  background-color: #1e90ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
  font-size: 0.95rem;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  background-color: #3fa9ff;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* =======================
   ALGEMENE SECTIES
======================= */

section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #111317;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-container > p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.packages-header {
  text-align: center;
}

.packages-subtitle {
  margin-top: 0.35rem;
  color: #98a0b6;
  font-size: 1rem;
  font-weight: 500;
}

.package-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: radial-gradient(circle at 30% 30%, rgba(30,144,255,0.35), rgba(16,18,26,0.95));
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.package-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  opacity: 0;
  transform: skewX(-20deg);
  transition: opacity 0.3s ease;
  animation: button-sheen 3s linear infinite;
}

@keyframes button-sheen {
  0% {
    transform: translateX(-150%) skewX(-20deg);
    opacity: 0;
  }
  30% {
    opacity: 0.45;
  }
  60% {
    transform: translateX(150%) skewX(-20deg);
    opacity: 0;
  }
  100% {
    transform: translateX(150%) skewX(-20deg);
    opacity: 0;
  }
}

.package-btn:focus-visible,
.whatsapp-btn:focus-visible {
  outline: 2px solid #1e90ff;
  outline-offset: 3px;
}

.package-btn:hover:not(:disabled) {
  background: #1e90ff;
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px) scale(1.05);
}

.package-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.package-btn svg {
  width: 20px;
  height: 20px;
}

.package-slider {
  overflow: hidden;
  margin-top: 2rem;
  max-width: 1400px; /* ✅ MEER RUIMTE */
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible; /* ✅ geen clippen */

}

.package-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
}

.package-track .card-link {
  flex: 1 1 calc(25% - 1.5rem); /* ✅ 4 kaarten */
  min-width: 280px;
}

.package-track .card {
  height: 100%;
}

.package-controls {
  display: none; /* ✅ desktop geen pijlen nodig */

}

.card {
  background: #1b1e22;
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
}

.card-content {
  text-align: center;
}

.card-content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.card-content p {
  color: #cfd3dd;
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 260px;
}

.package-price {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(30,144,255,0.15);
  border: 1px solid rgba(30,144,255,0.5);
  color: #ffffff;
  white-space: nowrap;
  display: inline-flex;
  margin-top: 0.85rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(30,144,255,0.3);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(30,144,255,0.3);
}

/* =======================
   CONTACT
======================= */

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-left,
.contact-right {
  /* width handled by grid */
  background-color: #1b1e22;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  padding: 2rem;
  min-height: 450px;
}

.contact-content {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Maak de rechter kolom volledig breed en laat de map de kaart vullen */
.contact-right {
  display: flex;
}

.contact-right .contact-content {
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-right .contact-content iframe {
  flex: 1 1 auto;
  height: auto; /* overschrijft het vaste HTML height-attribuut */
  min-height: 0;
}

.contact-left h3,
.contact-right h3 {
  color: #1e90ff;
  margin-bottom: 1rem;
}

.contact-content a {
  color: #e5e5e5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.contact-content a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.4);
}

.socials {
  margin: 1.5rem 0;
}

.socials a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.socials a:hover {
  color: #3fa9ff;
}

.social-icon {
  width: 20px;
  height: 20px;
  color: #1e90ff;
  transition: color 0.3s ease;
}

.socials a:hover .social-icon {
  color: #3fa9ff;
}

/* Contact links styling - alleen voor email en telefoon links */
.contact-content p a {
  color: #1e90ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-content p a:hover {
  color: #3fa9ff;
  text-decoration: underline;
}


/* =======================
   FOOTER
======================= */

footer {
  background: linear-gradient(90deg, #0a0a0a 0%, #11161b 100%);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: #8a8f9c;
}

.footer-links a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .divider {
  color: rgba(255,255,255,0.3);
}

/* =======================
   LEGAL PAGES
======================= */

.legal-page {
  background: #050608;
}

.legal-hero {
  padding: 7rem 1.5rem 3rem;
  text-align: center;
  background: radial-gradient(circle at top, rgba(30,144,255,0.25), transparent 55%);
}

.legal-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.legal-hero p {
  color: #b0b4c2;
  max-width: 640px;
  margin: 0 auto;
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-card {
  background: rgba(15, 17, 24, 0.85);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.legal-card h2 {
  color: #1e90ff;
  margin-bottom: 0.75rem;
}

.legal-card p,
.legal-card ul {
  color: #d7d9e2;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-card li {
  margin-bottom: 0.4rem;
}

.legal-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 1rem;
}

/* =======================
   MOBIEL
======================= */

@media (max-width: 768px) {
  /* NAV */
  .menu-toggle {
  display: flex; /* zichtbaar op mobiel */
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2001; /* ✅ boven de navbar en menu */
}

.menu-toggle .bar {
  height: 3px;
  width: 28px;
  background: #1e90ff; /* ✅ goed zichtbaar blauw */
  margin: 4px 0;
  border-radius: 3px;
  transition: 0.4s;
}

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    width: 75%;
    max-width: 320px;
    height: calc(100vh - 70px);
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    transition: right 0.4s ease;
  }

  .nav-menu.active { right: 0; }

  .nav-menu ul {
    flex-direction: column;
    gap: 1.8rem;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
  }

  .nav-menu a {
    font-size: 1.1rem;
    color: #fff;
  }



  .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */
  .hero {
    min-height: 90vh;
    padding: 4.5rem 1rem 3rem;
    justify-content: center;
  }

  .hero .logo {
    width: 70vw;
    max-width: 320px;
    margin-top: 2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }

  .hero p {
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto 1.5rem auto;
  }

  .whatsapp-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  /* CONTACT */
  .package-track {
    gap: 1.5rem;
    justify-content: flex-start;

  }

  .package-slider {
    overflow: hidden;
  }

  .package-track .card-link {
    flex: 0 0 calc(100% - 1rem);
  }
  

   .package-controls {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-left, .contact-right {
    min-height: unset;
    padding: 1.5rem;
  }

  iframe {
    height: 250px;
    border-radius: 8px;
  }

  /* SECTIONS */
  section {
    padding: 3rem 1rem;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* PAKKET PAGINA'S MOBIEL */
  .pakket-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pakket-image {
    width: 250px;
  }

  .info-card {
    padding: 1rem;
  }

  .pakket-details {
    padding: 3rem 1rem;
    padding-top: 5rem; /* Extra ruimte onder navbar op mobiel */
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  /* VIDEO MOBILE */
  .video-container iframe {
    height: 250px;
  }

  .video-section h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.9rem; }
  .whatsapp-btn { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
  .contact-content p { font-size: 0.9rem; }
  .package-controls {
    justify-content: center;
  }
}
