/* ==========================================================================
   All In One Music — site stylesheet
   Palette sampled from the live Wix site: blush pink, deep teal, near-black
   ink and a rose/magenta accent.
   ========================================================================== */

:root {
  --pink: #ecd2d4;        /* primary page background */
  --pink-soft: #f3e2e3;   /* lighter panels on top of pink */
  --cream: #f8faf5;       /* input fields / light cards */
  --teal: #1f4d63;        /* card footers, secondary dark accent */
  --teal-dark: #17394a;
  --ink: #14170f;         /* near-black — headings, buttons, body copy */
  --ink-soft: #55574c;    /* muted body text on light backgrounds */
  --accent: #8c3364;      /* rose/magenta — links, active states, icons */
  --accent-soft: #b25a86;

  --border: rgba(20, 23, 15, 0.15);
  --radius: 16px;
  --max-width: 1180px;
  --font: "Poppins", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--pink);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.01em; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 210, 212, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  color: var(--ink);
}

.brand .logo-mark { height: 58px; width: 58px; flex-shrink: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover { color: var(--accent); }
.nav a.active { color: var(--accent); border-bottom-color: var(--accent); }

.nav .cta {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  border-bottom: none !important;
}
.nav .cta:hover { background: var(--accent); color: var(--cream); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--pink-soft);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav a.active { border-bottom: 1px solid var(--border); }
  .nav .cta { margin-top: 12px; text-align: center; }
}

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 640px) { .hero { min-height: 64vh; } }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* if the video source is missing, the poster/hero-bg image shows through */
.hero-video:not([src]) source[src=""],
.hero-video source:not([src]) { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,23,15,0.35) 0%, rgba(20,23,15,0.55) 55%, rgba(20,23,15,0.85) 100%),
    linear-gradient(120deg, rgba(140,51,100,0.35), rgba(31,77,99,0.35));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 36px 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 24px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); background: var(--accent); box-shadow: 0 10px 24px rgba(140, 51, 100, 0.28); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); box-shadow: none; }

.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover { background: var(--accent); color: var(--cream); }

/* ---------- sections ---------- */

section { padding: 64px 0; }
.section-tight-top { padding-top: 28px; }

.section-head { margin-bottom: 40px; max-width: 70ch; }
.section-head-tight { margin-bottom: 24px; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.section-sub { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

/* ---------- stories carousel (home) ---------- */

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.story-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: block;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(20,23,15,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 560px) { .story-card { flex-basis: 80vw; } }
.story-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(20,23,15,0.16); }
.story-card .story-media { aspect-ratio: 4 / 3; overflow: hidden; }
.story-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.story-card .story-body { padding: 16px 18px 20px; }
.story-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.story-card p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }

.carousel-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: var(--cream);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.carousel-arrow:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 640px) { .carousel-arrow { display: none; } }

/* ---------- acts grid ---------- */

.acts-intro { margin-bottom: 44px; }
.acts-intro p { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 14px; }
.acts-intro a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.act-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(20,23,15,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  scroll-margin-top: 100px; /* voorkomt dat de sticky header een aangelinkte card verbergt */
}
.act-card:hover { transform: translateY(-5px); box-shadow: 0 18px 32px rgba(20,23,15,0.18); }

/* Kort oplichten wanneer je vanuit de succesverhalen-carousel op deze
   card terechtkomt, zodat de aandacht er even naartoe wordt getrokken. */
.act-card--highlight { animation: act-card-highlight 2.4s ease; }
@keyframes act-card-highlight {
  0%   { box-shadow: 0 0 0 0 rgba(140,51,100,0); transform: translateY(0) scale(1); }
  8%   { box-shadow: 0 0 0 7px rgba(140,51,100,.55); transform: translateY(-4px) scale(1.012); }
  17%  { box-shadow: 0 0 0 0 rgba(140,51,100,0); transform: translateY(0) scale(1); }
  25%  { box-shadow: 0 0 0 7px rgba(140,51,100,.55); transform: translateY(-4px) scale(1.012); }
  34%  { box-shadow: 0 0 0 0 rgba(140,51,100,0); transform: translateY(0) scale(1); }
  42%  { box-shadow: 0 0 0 7px rgba(140,51,100,.55); transform: translateY(-4px) scale(1.012); }
  55%  { box-shadow: 0 0 0 0 rgba(140,51,100,0); transform: translateY(0) scale(1); }
  100% { box-shadow: 0 1px 3px rgba(20,23,15,0.08); transform: translateY(0) scale(1); }
}

/* Foto bestrijkt de volledige card, onvervaagd — de teal panel eronder
   zorgt voor de leesbaarheid van naam/tekst. */
.act-card .act-media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--accent));
}
.act-card .act-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.act-card .act-media .placeholder-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 2.6rem; }

.act-card .act-role {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.92);
  color: var(--teal);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.4px;
  padding: 6px 12px;
  border-radius: 999px;
}

.act-card-body {
  position: relative; z-index: 2;
  padding: clamp(200px, 90%, 340px) 18px 18px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}

.act-card-panel {
  background: var(--teal);
  margin: 0 -18px;
  padding: 10px 18px 14px;
  display: flex; flex-direction: column; gap: 10px;
}

.act-card-name {
  margin: 0; font-size: 1.05rem; letter-spacing: 0.01em;
  text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.act-card-links { display: flex; align-items: center; gap: 10px; }
.act-more, .act-video-btn {
  background: none; border: none; padding: 0;
  font-size: 0.83rem; font-weight: 600; color: rgba(255,255,255,.95);
  text-decoration: underline; text-underline-offset: 3px;
  cursor: pointer; font-family: inherit;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.act-more:hover, .act-video-btn:hover { color: #fff; }
.act-linksep { color: rgba(255,255,255,.55); font-size: 0.83rem; text-shadow: 0 1px 3px rgba(0,0,0,.5); }

.act-extra { font-size: 0.88rem; color: rgba(255,255,255,.92); line-height: 1.55; display: none; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.act-extra.open { display: block; }
.act-extra p { margin: 0; }

.act-card-foot { margin-top: auto; padding-top: 4px; }
.act-add {
  display: block;
  width: 100%;
  text-align: center;
  border: 1.5px solid var(--accent);
  background: #fff;
  color: var(--accent);
  border-radius: 999px;
  padding: 11px;
  font-weight: 600; font-size: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.act-add:hover { background: var(--accent); color: #fff; }

/* ---------- act video modal ---------- */
.act-video-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,23,15,0.62);
  display: none; place-items: center; padding: 20px;
}
.act-video-modal.open { display: grid; }
.act-video-modal__box { background: var(--cream); border-radius: var(--radius); width: min(760px, 96vw); overflow: hidden; box-shadow: 0 20px 60px rgba(20,23,15,0.3); }
.act-video-modal__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.act-video-modal__head h3 { margin: 0; color: var(--ink); font-size: 1.05rem; }
.act-video-modal__close { background: none; border: none; font-size: 17px; color: var(--ink-soft); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; }
.act-video-modal__close:hover { background: var(--pink-soft); color: var(--ink); }
.act-video-modal__frame { aspect-ratio: 16 / 9; background: #000; }
.act-video-modal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- act detail page ---------- */

.act-hero {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0 24px;
}
@media (max-width: 780px) { .act-hero { grid-template-columns: 1fr; } }
.act-hero .act-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 30px rgba(20,23,15,0.16); }
.act-hero .act-photo img { width: 100%; }
.act-hero .act-photo.placeholder { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--teal), var(--accent)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 3rem; }
.act-hero .eyebrow { margin-bottom: 14px; }
.act-hero h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin: 0 0 22px; }
.act-hero .body-text { color: var(--ink-soft); white-space: pre-line; margin-bottom: 30px; font-size: 1.08rem; }

.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; margin-bottom: 20px; font-size: 0.92rem; }
.back-link:hover { text-decoration: underline; }

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20,23,15,0.16);
  margin-top: 8px;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- about page ---------- */

.about-lead { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 12px; }
.about-lead a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.clients-grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}
.clients-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 700px) { .clients-grid { flex-direction: column; } }

.client-block {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.client-block h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 10px;
}
.client-block p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ---------- contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 56px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-item .icon svg { width: 22px; height: 22px; }
.contact-info-item .icon.icon-brand { background: transparent; padding: 0; }
.contact-info-item .icon.icon-brand svg { width: 46px; height: 46px; }
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-info-item p, .contact-info-item a { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }
.contact-info-item a:hover { color: var(--accent); }

.contact-socials { display: flex; gap: 12px; margin-top: 8px; }
.contact-socials a {
  width: 42px; height: 42px; border-radius: 999px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-socials a:hover { background: var(--ink); color: var(--cream); }
.contact-socials svg { width: 20px; height: 20px; }

form.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 1px 3px rgba(20,23,15,0.08);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }

.form-row { margin-bottom: 18px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-row input:focus,
.form-row textarea:focus { outline: none; border-color: var(--accent); }
.form-row textarea { min-height: 130px; resize: vertical; }

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.success { color: #2f7a4f; }
.form-status.error { color: #b3352f; }

/* honeypot field - hidden from real users */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
  margin-top: 20px;
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .brand-mini { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.02em; }
.site-footer .brand-mini .logo-mark { height: 38px; width: 38px; }
.site-footer .social { display: flex; gap: 14px; }
.site-footer .social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease;
}
.site-footer .social a:hover { transform: translateY(-2px); }
.site-footer .social svg { width: 38px; height: 38px; }
.site-footer .copy { color: var(--ink-soft); font-size: 0.85rem; width: 100%; text-align: center; margin-top: 20px; }
