/* =========================================================
   THE FLU FIGHTERS - WEBSITE STYLESHEET
   ---------------------------------------------------------
   Algemene stylesheet voor de website.

   Opbouw:
   1. Kleuren & algemene instellingen
   2. Basis HTML
   3. Navigatie
   4. Pagina & header/video
   5. Algemene secties
   6. Teksten & knoppen
   7. Video's
   8. Shows
   9. Bandleden
   10. Reacties
   11. Contact
   12. Media / foto's
   13. Footer
   14. Lightbox
   15. Tablet
   16. Mobiel

   LET OP:
   De bestaande class-namen zijn bewust behouden.
   Hierdoor hoeft index.php niet aangepast te worden.
   ========================================================= */


/* =========================================================
   1. KLEUREN & ALGEMENE INSTELLINGEN
   ========================================================= */

:root {

  /* Hoofdkleuren van de website */
  --teal: #008b8b;
  --teal-dark: #006f70;
  --aqua: #98e7e4;
  --orange: #da7400;

  /* Tekstkleuren */
  --ink: #202426;
  --muted: #62696b;

  /* Achtergronden */
  --paper: #f7f8f7;
  --white: #ffffff;
  --dark: #242829;

  /* Vormgeving */
  --radius: 18px;
  --shadow: 0 12px 35px rgba(0, 0, 0, .10);
}


/* =========================================================
   2. BASIS HTML
   ========================================================= */

/*
 * Box-sizing zorgt ervoor dat padding en borders
 * worden meegerekend binnen de opgegeven breedte.
 */
* {
  box-sizing: border-box;
}


/*
 * Smooth scrolling bij bijvoorbeeld:
 * <a href="#contact">
 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}


/*
 * Algemene pagina-instellingen.
 */
body {
  margin: 0;

  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(152, 231, 228, .22),
      transparent 28rem
    ),
    linear-gradient(
      180deg,
      #25292a 0%,
      #1e2122 100%
    );

  color: var(--ink);

  font-family: Questrial, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}


/*
 * Links erven standaard de kleur van hun omgeving.
 */
a {
  color: inherit;
}


/*
 * Afbeeldingen blijven altijd binnen hun container.
 */
img {
  max-width: 100%;
  height: auto;
}


/*
 * Formulierelementen gebruiken dezelfde box-sizing.
 */
button,
input,
textarea {
  box-sizing: border-box;
}


/* =========================================================
   3. NAVIGATIE
   ========================================================= */

/*
 * De navigatie blijft bovenaan zichtbaar tijdens scrollen.
 *
 * menu.php gebruikt:
 * .site-nav
 * .nav-inner
 * .logo
 * .nav-links
 * .social-links
 * .menu-toggle
 */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;

  z-index: 1000;

  background: rgba(255, 255, 255, .96);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0, 0, 0, .08);

  box-shadow:
    0 4px 20px rgba(0, 0, 0, .08);
}


/*
 * Binnencontainer van het menu.
 */
.nav-inner {
  width: min(1180px, calc(100% - 32px));

  min-height: 68px;

  margin: 0 auto;

  display: flex;
  align-items: center;

  gap: 28px;
}


/*
 * Logo links in de navigatie.
 */
.logo {
  display: flex;
  align-items: center;

  flex: 0 0 auto;
}


.logo img {
  display: block;

  width: auto;
  height: 46px;
}


/*
 * Navigatielinks nemen de beschikbare ruimte in
 * en worden in het midden geplaatst.
 */
.nav-links {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: clamp(12px, 2vw, 30px);

  flex: 1;
}


/*
 * Desktop navigatielinks.
 */
.nav-links a {
  color: var(--orange);

  text-decoration: none;

  font-family: Anton, sans-serif;
  font-size: 20px;
  font-weight: 400;

  letter-spacing: .04em;

  transition:
    color .2s ease,
    transform .2s ease;
}


.nav-links a:hover {
  color: var(--ink);

  transform: translateY(-2px);
}


/*
 * Social media links rechts in het menu.
 */
.social-links {
  display: flex;

  align-items: center;

  gap: 13px;
}


.social-links img {
  display: block;

  width: 21px;
  height: 21px;

  object-fit: contain;

  transition:
    transform .2s ease;
}


.social-links a:hover img {
  transform: scale(1.12);
}


/*
 * Hamburgerknop is op desktop verborgen.
 * Op mobiel wordt deze hieronder zichtbaar.
 */
.menu-toggle {
  display: none;
}


/* =========================================================
   4. PAGINA & HEADER
   ========================================================= */

/*
 * De hoofdinhoud wordt onder de vaste navigatie geplaatst.
 */
.page {
  width: min(1180px, calc(100% - 32px));

  margin: 0 auto;

  padding-top: 92px;
}

/* =========================================================
   HERO AFBEELDINGEN
   ========================================================= */

.hero {
  overflow: hidden;

  border-radius:
    0 0 var(--radius) var(--radius);

  background: #111;

  box-shadow: var(--shadow);
}

.hero img {
  display: block;

  width: 100%;
  height: auto;
}



/*
 * Header met YouTube-video.
 */
.header {
  overflow: hidden;

  border-radius:
    0 0 var(--radius) var(--radius);

  background: #111;

  box-shadow: var(--shadow);
}


/*
 * Header-video houdt altijd een verhouding van 16:9.
 */
.header-video {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;
}


.header-video > div,
.header-video iframe {
  width: 100% !important;
  height: 100% !important;

  border: 0;
}


/* =========================================================
   5. ALGEMENE SECTIES
   ========================================================= */

/*
 * Algemene blokken op de pagina.
 */
.section {
  margin-top: 18px;

  padding: clamp(32px, 5vw, 64px);

  background: var(--paper);

  box-shadow: var(--shadow);
}


/*
 * Donkere secties.
 * Wordt bijvoorbeeld gebruikt voor video's en bandleden.
 */
.section-dark {
  background: var(--dark);

  color: var(--white);
}


/*
 * Licht gekleurde accentsecties.
 */
.section-accent {
  background:
    linear-gradient(
      135deg,
      #f8ffff 0%,
      #eaf7f6 100%
    );
}


/*
 * Inhoud van een sectie wordt beperkt tot een prettige
 * leesbreedte.
 */
.section-inner {
  width: min(900px, 100%);

  margin: 0 auto;
}


/*
 * Koppen van secties.
 */
.section-title {
  margin: 0 0 28px;

  text-align: center;

  color: var(--teal);

  font-family: Anton, sans-serif;

  font-size: clamp(30px, 4vw, 42px);

  font-weight: 400;

  line-height: 1.15;

  letter-spacing: .025em;
}


/*
 * Koppen op donkere achtergronden worden lichtblauw.
 */
.section-dark .section-title {
  color: var(--aqua);
}


/*
 * Introductietekst.
 */
.lead {
  margin-top: 0;

  font-size: 1.12em;
}


/*
 * Afsluitende slogan in bijvoorbeeld de praktische sectie.
 */
.tagline {
  margin: 30px 0 0;

  color: var(--orange);

  font-family: Anton, sans-serif;

  font-size: 25px;

  letter-spacing: .03em;
}


/* =========================================================
   6. KNOPPEN & CTA
   ========================================================= */

/*
 * Algemene call-to-action knop.
 *
 * Bijvoorbeeld:
 * VRAAG BESCHIKBAARHEID AAN
 */
.cta-button {
  display: inline-block;

  margin-top: 22px;

  padding: 15px 30px;

  border-radius: 999px;

  background: var(--orange);

  color: var(--white);

  text-decoration: none;

  font-family: Anton, sans-serif;

  font-size: 20px;

  line-height: 1.2;

  letter-spacing: .04em;

  box-shadow:
    0 7px 18px rgba(218, 116, 0, .28);

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}


.cta-button:hover {
  background: var(--teal);

  color: var(--white);

  transform: translateY(-3px);

  box-shadow:
    0 9px 22px rgba(0, 139, 139, .30);
}


/*
 * De vier informatieknoppen:
 *
 * Bruiloft
 * Tentfeest / Festival
 * Bedrijfsfeest
 * Privé feest
 */
.booking-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(130px, 170px));

  gap: 14px;

  justify-content: center;
}


.booking-grid a {
  display: flex;

  min-height: 70px;

  align-items: center;
  justify-content: center;

  padding: 18px;

  border: 2px solid var(--teal);

  border-radius: 12px;

  background: var(--white);

  color: var(--teal-dark);

  text-decoration: none;

  font-family: Anton, sans-serif;

  font-size: 20px;

  line-height: 1.15;

  text-align: center;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}


.booking-grid a:hover {
  background: var(--teal);

  color: var(--white);

  transform: translateY(-3px);

  box-shadow:
    0 8px 20px rgba(0, 139, 139, .22);
}



/* =========================================================
   7. VIDEO'S
   ========================================================= */

/*
 * Container voor de video's in de donkere secties.
 */
.video-wrap {
  width: min(900px, 100%);

  margin: 0 auto;
}


/*
 * Video behoudt 16:9 verhouding.
 */
.video {
  position: relative;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-radius: 14px;

  background: #111;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, .20);
}


.video iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}


/* =========================================================
   8. OPTREDENS / SHOWS
   ========================================================= */

/*
 * Lijst met optredens.
 */
.shows {
  width: min(760px, 100%);

  margin: 0 auto;

  display: grid;

  gap: 10px;
}


/*
 * Eén optreden.
 */
.show {
  display: grid;

  grid-template-columns: 92px 1fr;

  min-height: 86px;

  overflow: hidden;

  border-radius: 12px;

  background: var(--dark);

  box-shadow:
    0 5px 15px rgba(0, 0, 0, .10);
}


/*
 * Datum aan de linkerkant van een optreden.
 */
.show-date {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  background: var(--aqua);

  color: var(--ink);

  font-family: Anton, sans-serif;

  font-size: 22px;

  line-height: 1.05;

  text-transform: uppercase;

  text-align: center;
}


/*
 * Tekstgedeelte van een optreden.
 */
.show-info {
  padding: 15px 20px;

  color: var(--white);
}


.show-name {
  margin-bottom: 2px;

  font-size: 20px;

  line-height: 1.3;
}


.show-location {
  color: var(--aqua);

  font-size: 14px;

  line-height: 1.4;
}


/* =========================================================
   9. BANDLEDEN
   ========================================================= */

/*
 * Grid met foto's van de bandleden.
 *
 * Desktop:
 * 3 kolommen
 *
 * Mobiel:
 * 2 kolommen
 */
.members {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px 22px;
}


/*
 * Eén bandlid.
 */
.member {
  text-align: center;
}


/*
 * Portretfoto van een bandlid.
 */
.member img {
  display: block;

  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  border-radius: 14px;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .15);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.member:hover img {
  transform: translateY(-4px);

  box-shadow:
    0 12px 25px rgba(0, 0, 0, .20);
}


.member-name {
  margin-top: 12px;

  font-size: 19px;

  line-height: 1.3;
}


.member-role {
  color: var(--muted);

  font-size: 16px;

  line-height: 1.4;
}


/*
 * Op de donkere achtergrond is de standaard muted kleur
 * soms te donker. Daarom maken we de roltekst hier lichter.
 */
.section-dark .member-role {
  color: rgba(255, 255, 255, .68);
}

/* =========================================================
   10. REACTIES / REVIEWS
   ========================================================= */

#recenties .section-inner {
  position: relative;
  min-height: 260px;
}

/*
 * Eén reactie.
 * JavaScript bepaalt welke reactie zichtbaar is.
 */
#recenties .quote {
  position: absolute;
  top: 75px;
  left: 50%;

  width: min(820px, 100%);
  margin: 0;
  padding: 25px 30px;

  transform: translateX(-50%);

  border-left: 5px solid var(--orange);
  background: var(--white);
  color: var(--ink);

  font-family: Questrial, sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.55;

  box-shadow:
    0 6px 20px rgba(0, 0, 0, .06);

  opacity: 0;

  transition:
    opacity .5s ease;
}

/*
 * De actieve reactie.
 */
#recenties .quote.active {
  opacity: 1;
}

#recenties .quote strong {
  font-style: normal;
}


/*
 * Animatie voor de reviews.
 */
@keyframes quoteFade {

  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


/* =========================================================
   11. CONTACTGEGEVENS
   ========================================================= */

.contact-details {
  display: flex;

  justify-content: center;

  gap: 42px;

  flex-wrap: wrap;

  margin: 25px 0 35px;

  text-align: center;
}


.contact-details strong {
  color: var(--teal-dark);
}


.contact-details a {
  color: var(--teal-dark);

  text-decoration: none;
}


.contact-details a:hover {
  text-decoration: underline;
}


/* =========================================================
   12. CONTACTFORMULIER
   ========================================================= */

/*
 * Het formulier wordt bewust iets smaller gehouden dan
 * de rest van de sectie. Dat leest prettiger.
 */
.contact-form {
  width: min(650px, 100%);

  margin: 0 auto;
}


/*
 * Tekstvelden.
 */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  display: block;

  width: 100%;

  margin: 0 0 13px;

  padding: 14px 16px;

  border: 1px solid #d4d9d8;

  border-radius: 10px;

  background: var(--white);

  color: var(--ink);

  font: inherit;

  line-height: 1.4;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


/*
 * Focus-status van invoervelden.
 */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-color: var(--teal);

  box-shadow:
    0 0 0 3px rgba(0, 139, 139, .12);
}


/*
 * Placeholdertekst iets subtieler.
 */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #858b8c;

  opacity: 1;
}


/*
 * Berichtveld.
 */
.contact-form textarea {
  min-height: 170px;

  resize: vertical;
}


/*
 * Keuzevelden voor het soort feest.
 */
.party-types {
  display: flex;

  flex-wrap: wrap;

  gap: 10px 18px;

  margin: 5px 0 18px;

  font-size: 16px;
}


/*
 * Labels van de radioknoppen.
 */
.party-types label {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  cursor: pointer;
}


/*
 * Submitknop.
 */
.submit {
  display: block;

  margin: 12px auto 0;

  padding: 15px 42px;

  border: none;

  border-radius: 999px;

  background: var(--teal);

  color: var(--white);

  font-family: Anton, sans-serif;

  font-size: 21px;

  font-weight: 400;

  line-height: 1.2;

  letter-spacing: .04em;

  cursor: pointer;

  box-shadow:
    0 6px 16px rgba(0, 139, 139, .28);

  transition:
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}


.submit:hover {
  background: var(--teal-dark);

  transform: translateY(-3px);

  box-shadow:
    0 9px 22px rgba(0, 139, 139, .35);
}


.submit:active {
  transform: translateY(0);
}


/*
 * Toetsenbordfocus voor toegankelijkheid.
 */
.submit:focus-visible,
.cta-button:focus-visible,
.booking-grid a:focus-visible {
  outline: 3px solid var(--orange);

  outline-offset: 3px;
}


/* =========================================================
   FORMULIERMELDINGEN
   ========================================================= */

/*
 * Algemene stijl voor succes- en foutmeldingen.
 */
.form-message {
  margin: 0 auto 25px;

  padding: 16px 20px;

  border-radius: 10px;

  font-size: 17px;

  line-height: 1.5;
}


/*
 * Succesmelding na een verzonden formulier.
 */
.form-message.success {
  background: #eaf7f6;

  border-left: 4px solid var(--teal);

  color: var(--teal-dark);
}


/*
 * Foutmelding wanneer het formulier niet correct
 * kan worden verwerkt.
 */
.form-message.error {
  background: #fff3f0;

  border-left: 4px solid var(--orange);

  color: #7a3500;
}


/*
 * Verborgen honeypot voor spambots.
 *
 * Dit veld blijft technisch aanwezig in de HTML,
 * maar is voor bezoekers niet zichtbaar.
 */
.honeypot {
  position: absolute;

  left: -9999px;

  width: 1px;
  height: 1px;

  overflow: hidden;
}


/* =========================================================
   13. MEDIA / FOTO'S
   ========================================================= */

/*
 * Fotogrid:
 *
 * Desktop = 3 kolommen
 * Mobiel = 2 kolommen
 */
.media-section {
  overflow: hidden;
}


.media-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px 22px;
}


.media-item {
  text-align: center;
}


.media-item a {
  display: block;
}


/*
 * Foto zelf.
 */
.media-item img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 14px;

  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .15);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.media-item img:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 26px rgba(0, 0, 0, .20);
}


/*
 * Als er oude HTML met een <center> in de media-sectie
 * staat, blijft dit netjes werken.
 */
.media-section > center {
  display: block;
}


.media-section table {
  max-width: 100%;
}


/* =========================================================
   14. FOOTER
   ========================================================= */

.footer {
  padding: 35px 20px 45px;

  color: rgba(255, 255, 255, .70);

  text-align: center;

  font-size: 15px;
}


.footer .social-links {
  justify-content: center;

  margin-top: 12px;
}


/* =========================================================
   15. LIGHTBOX
   ========================================================= */

/*
 * Donkere fullscreen achtergrond wanneer een foto wordt
 * geopend.
 *
 * JavaScript voegt de class "active" toe.
 */
.lightbox {
  display: none;

  position: fixed;

  inset: 0;

  z-index: 2000;

  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, .92);
}


/*
 * Lightbox wordt zichtbaar zodra JavaScript
 * de class active toevoegt.
 */
.lightbox.active {
  display: flex;
}


/*
 * De grote foto in de lightbox.
 */
.lightbox-image {
  max-width: 90vw;
  max-height: 88vh;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 8px;

  box-shadow:
    0 10px 40px rgba(0, 0, 0, .50);
}


/*
 * Algemene stijl van de drie lightbox-knoppen:
 *
 * sluiten
 * vorige
 * volgende
 */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;

  width: 50px;
  height: 50px;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, .12);

  color: var(--white);

  font-size: 32px;

  line-height: 1;

  cursor: pointer;

  transition:
    background .2s ease,
    transform .2s ease;
}


.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, .25);

  transform: scale(1.08);
}


/*
 * Sluitknop rechtsboven.
 */
.lightbox-close {
  top: 20px;
  right: 25px;

  font-size: 30px;
}


/*
 * Vorige foto.
 */
.lightbox-prev {
  left: 25px;
  top: 50%;

  transform: translateY(-50%);
}


.lightbox-prev:hover {
  transform:
    translateY(-50%)
    scale(1.08);
}


/*
 * Volgende foto.
 */
.lightbox-next {
  right: 25px;
  top: 50%;

  transform: translateY(-50%);
}


.lightbox-next:hover {
  transform:
    translateY(-50%)
    scale(1.08);
}


/* =========================================================
   16. TABLET
   ========================================================= */

/*
 * Vanaf 900px wordt de navigatie wat compacter
 * en gaan de informatieknoppen naar twee kolommen.
 */
@media (max-width: 900px) {

  .nav-inner {
    gap: 14px;
  }


  .nav-links {
    gap: 12px;
  }


  .nav-links a {
    font-size: 15px;
  }


  .booking-grid {
    grid-template-columns:
      repeat(2, minmax(140px, 180px));
  }
}


/* =========================================================
   17. MOBIELE NAVIGATIE
   ========================================================= */

/*
 * Op telefoons verandert het menu in een hamburger-menu.
 *
 * menu.js gebruikt de class:
 * .menu-toggle.active
 * .nav-links.active
 */
@media (max-width: 680px) {

  /*
   * Algemene mobiele tekstgrootte.
   */
  body {
    font-size: 16px;
  }


  /*
   * De pagina loopt op mobiel over de volledige breedte.
   */
  .page {
    width: 100%;

    padding-top: 78px;
  }


  /*
   * Navigatie blijft bovenaan staan.
   */
  .site-nav {
    position: fixed;

    background: rgba(255, 255, 255, .98);

    border-bottom:
      1px solid rgba(0, 0, 0, .08);

    box-shadow:
      0 4px 20px rgba(0, 0, 0, .10);
  }


  /*
   * Mobiele navigatiebalk.
   */
  .nav-inner {
    width: 100%;

    min-height: 68px;

    padding: 8px 18px;

    display: flex;

    align-items: center;
    justify-content: flex-start;

    gap: 14px;
  }


  /*
   * Logo blijft links staan naast de hamburger.
   */
  .logo {
    width: auto;

    justify-content: flex-start;
  }


  .logo img {
    display: block;

    width: auto;

    height: 48px;
  }


  /*
   * Hamburgerknop.
   */
  .menu-toggle {
    display: flex;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    padding: 10px;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    border: 2px solid var(--teal);

    border-radius: 12px;

    background: var(--white);

    cursor: pointer;
  }


  /*
   * De drie horizontale lijntjes.
   */
  .menu-toggle span {
    display: block;

    width: 100%;
    height: 3px;

    border-radius: 3px;

    background: var(--teal);

    transition:
      transform .25s ease,
      opacity .25s ease;
  }


  /*
   * Hamburger verandert in een kruisje.
   */
  .menu-toggle.active span:nth-child(1) {
    transform:
      translateY(8px)
      rotate(45deg);
  }


  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }


  .menu-toggle.active span:nth-child(3) {
    transform:
      translateY(-8px)
      rotate(-45deg);
  }


  /*
   * Mobiel navigatiemenu.
   *
   * Het menu schuift vanaf rechts het scherm in.
   */
  .nav-links {
    display: flex;

    position: fixed;

    top: 68px;
    left: 0;

    width: 100%;
    height: calc(100vh - 68px);

    padding: 35px 25px;

    flex-direction: column;

    justify-content: flex-start;
    align-items: stretch;

    gap: 4px;

    background: rgba(255, 255, 255, .98);

    overflow-y: auto;

    transform: translateX(100%);

    transition:
      transform .3s ease;
  }


  /*
   * Actief menu wordt zichtbaar.
   */
  .nav-links.active {
    transform: translateX(0);
  }


  /*
   * Grote mobiele menulinks.
   */
  .nav-links a {
    display: block;

    padding: 17px 10px;

    color: var(--orange);

    font-size: 28px;

    line-height: 1.2;

    text-align: left;

    text-decoration: none;

    border-bottom:
      1px solid rgba(0, 139, 139, .15);
  }


  .nav-links a:hover {
    color: var(--teal);

    transform: none;
  }


  /*
   * Social media iconen worden in het mobiele menu
   * verborgen om ruimte te besparen.
   */
  .social-links {
    display: none;
  }


  /* -------------------------------------------------------
     Algemene mobiele secties
     ------------------------------------------------------- */

  .section {
    margin-top: 10px;

    padding: 34px 18px;

    border-radius: 0;
  }


  /*
   * De sectietitel wordt iets kleiner op mobiel.
   */
  .section-title {
    margin-bottom: 22px;

    font-size: 32px;
  }


  /*
   * CTA-knop kan op kleine schermen iets compacter.
   */
  .cta-button {
    padding: 14px 24px;

    font-size: 18px;

    text-align: center;
  }


  /* -------------------------------------------------------
     Informatieknoppen
     ------------------------------------------------------- */

  .booking-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .booking-grid a {
    width: 100%;

    min-height: 62px;
  }


  /* -------------------------------------------------------
     Shows
     ------------------------------------------------------- */

  .show {
    grid-template-columns: 76px 1fr;
  }


  .show-date {
    font-size: 19px;
  }


  .show-info {
    padding: 13px 14px;
  }


  .show-name {
    font-size: 18px;
  }


  .show-location {
    font-size: 13px;
  }


  /* -------------------------------------------------------
     Bandleden
     ------------------------------------------------------- */

  .members {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 22px 12px;
  }


  .member-name {
    font-size: 17px;
  }


  .member-role {
    font-size: 14px;
  }


  /* -------------------------------------------------------
     Reviews
     ------------------------------------------------------- */

  #recenties .section-inner {
    min-height: 360px;
  }


  #recenties .quote {
    top: 75px;

    padding: 20px;

    font-size: 17px;
  }


  /* -------------------------------------------------------
     Contact
     ------------------------------------------------------- */

  .contact-details {
    display: block;

    margin-bottom: 28px;

    text-align: center;
  }


  .contact-details > div {
    margin: 8px 0;
  }


  .party-types {
    gap: 9px 14px;

    font-size: 15px;
  }


  .submit {
    width: auto;

    padding: 14px 36px;
  }


  /* -------------------------------------------------------
     Foto's
     ------------------------------------------------------- */

  .media-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 18px 12px;
  }


  /* -------------------------------------------------------
     Lightbox
     ------------------------------------------------------- */

  .lightbox {
    padding: 15px;
  }


  .lightbox-image {
    max-width: 94vw;

    max-height: 82vh;
  }


  .lightbox-close {
    top: 12px;
    right: 12px;
  }


  .lightbox-prev {
    left: 10px;
  }


  .lightbox-next {
    right: 10px;
  }


  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;

    font-size: 27px;
  }
}


/* =========================================================
   18. EXTRA KLEINE TELEFOONS
   ========================================================= */

/*
 * Voor echt kleine schermen, bijvoorbeeld 320-360px breed.
 */
@media (max-width: 400px) {

  .nav-inner {
    padding-left: 12px;
    padding-right: 12px;
  }


  .logo img {
    height: 44px;
  }


  .menu-toggle {
    width: 44px;
    height: 44px;

    flex-basis: 44px;
  }


  .section {
    padding-left: 15px;
    padding-right: 15px;
  }


  .section-title {
    font-size: 29px;
  }


  .show {
    grid-template-columns: 68px 1fr;
  }


  .show-date {
    font-size: 17px;
  }


  .show-info {
    padding: 12px;
  }


  .show-name {
    font-size: 16px;
  }


  .media-grid {
    gap: 12px 9px;
  }


  .member-name {
    font-size: 16px;
  }


  .submit {
    width: 100%;
  }
}



/* =========================================================
   FOTO-GRID
   ---------------------------------------------------------
   Gebruikt op pagina's zoals:
   - Bedrijfsfeest
   - Bruiloft
   - Tentfeest
   - Privéfeest

   Desktop: 2 foto's naast elkaar
   Mobiel: 1 foto per rij
   ========================================================= */

.photo-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}


/*
 * Alle foto's krijgen dezelfde beeldverhouding.
 * Hierdoor ziet de fotogrid er strak en rustig uit,
 * ook wanneer de originele foto's verschillende
 * afmetingen hebben.
 */
.photo-grid img {
  display: block;

  width: 100%;

  aspect-ratio: 3 / 2;

  object-fit: cover;

  border-radius: 14px;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .15);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


/*
 * Subtiel zweefeffect wanneer je met de muis
 * over een foto gaat.
 */
.photo-grid img:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 26px rgba(0, 0, 0, .20);
}


/*
 * Op een telefoon worden de foto's onder elkaar gezet.
 */
@media (max-width: 680px) {

  .photo-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

}


/* Instagram */
.instagram-section {
    padding: 70px 20px;
}

.instagram-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-item {
    min-width: 0;
}

.instagram-item .instagram-media {
    margin: 0 auto !important;
    min-width: 0 !important;
    width: 100% !important;
}

/* Mobiel */
@media (max-width: 800px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
    }
}


/* Hamburger menu alleen tonen op schermen t/m 680px */
.menu-toggle {
  display: none !important;
}

@media (max-width: 680px) {
  .menu-toggle {
    display: flex !important;
  }
}