/* ============================================================
   OnDestination - Partner Detail page styles
   Extends home.css / colors_and_type.css / partners.css
   ============================================================ */

/* ---- Partner Hero ---- */
.partner-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #F8F5EE;
}
.phero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(135deg, #141414 0 14px, #191919 14px 28px);
}
.phero-bg::after {
  content: attr(data-ph);
  position: absolute; inset: 0; margin: auto; height: max-content;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.phero-wash {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(900px 520px at 72% 14%, rgba(111,224,0,.13), transparent 58%),
    linear-gradient(to top, rgba(0,0,0,.97) 0%, rgba(0,0,0,.54) 38%, rgba(0,0,0,.22) 100%);
}
.phero-deco {
  position: absolute; bottom: 56px; right: -24px; z-index: 2;
  font-family: 'Kardige', sans-serif;
  font-size: clamp(150px, 22vw, 300px);
  line-height: 1; letter-spacing: -.04em;
  color: rgba(255,255,255,.024);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.partner-hero-inner {
  position: relative; z-index: 3;
  padding-top: 152px;
}

/* Breadcrumb */
.phero-bread {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: rgba(248,245,238,.4);
  margin-bottom: 28px;
}
.phero-bread a {
  color: rgba(248,245,238,.4); text-decoration: none;
  transition: color 160ms;
}
.phero-bread a:hover { color: #6FE000; }
.phero-bread svg { opacity: .36; flex-shrink: 0; }
.phero-bread span { color: rgba(248,245,238,.72); }

.phero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #6FE000; background: rgba(111,224,0,.1); border: 1px solid rgba(111,224,0,.22);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.partner-hero h1 {
  font-size: clamp(72px, 12vw, 156px);
  line-height: .93; letter-spacing: -.03em; margin: 0 0 12px; color: #F8F5EE;
}
.phero-sub {
  font-size: 16px; color: rgba(248,245,238,.42);
  margin: 0 0 52px; letter-spacing: .02em;
}

/* Meta strip */
.phero-meta-strip {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.36);
  backdrop-filter: blur(10px);
}
.phero-meta-items {
  display: flex; align-items: center; flex-wrap: wrap;
  padding: 20px 0; gap: 0;
}
.phero-meta-item {
  display: flex; flex-direction: column; gap: 3px;
  padding-right: 32px; margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,.09);
}
.phero-meta-item:last-of-type {
  border-right: none; padding-right: 0; margin-right: 0;
}
.pmi-label {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(248,245,238,.3); font-weight: 700;
}
.pmi-val {
  font-size: 15px; color: #F8F5EE; font-weight: 600;
}
.pmi-ext {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 13px; font-weight: 700; color: #6FE000; letter-spacing: .02em;
  text-decoration: none; white-space: nowrap;
  transition: gap 200ms cubic-bezier(.22,.61,.36,1);
}
.pmi-ext:hover { gap: 15px; color: #8BFF1F; }
.pext-arr {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(111,224,0,.14);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 200ms;
}
.pmi-ext:hover .pext-arr { background: #6FE000; }
.pmi-ext:hover .pext-arr svg { stroke: #000; }
.pext-arr svg { width: 14px; height: 14px; }

/* ---- About Split ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 72px; align-items: start;
}
.about-left h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04; margin: 0 0 24px;
}
.about-left p {
  font-size: 17px; line-height: 1.65; color: #4a4a4a;
  margin: 0 0 18px; max-width: 50ch;
}
.about-left p:last-child { margin-bottom: 0; }

.facts-card {
  background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px; padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.facts-card h3 {
  font-family: 'Kardige', sans-serif; font-size: 23px; font-weight: 400;
  letter-spacing: -.015em; color: #0A0A0A; margin: 0 0 22px;
}
.facts-rows {
  border-top: 1px solid rgba(0,0,0,.07); margin-bottom: 24px;
}
.fact-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,.06);
}
.fact-key {
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: #8a8a86; font-weight: 700; flex-shrink: 0;
}
.fact-val {
  font-size: 14.5px; color: #0A0A0A; font-weight: 500; text-align: right;
}

/* ---- Gallery Mosaic ---- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 220px;
  gap: 14px;
}
.gal-img {
  border-radius: 18px; overflow: hidden; position: relative;
  background: repeating-linear-gradient(135deg, #141414 0 14px, #191919 14px 28px);
}
.gal-img::after {
  content: attr(data-ph);
  position: absolute; inset: 0; margin: auto; height: max-content;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.gal-img:nth-child(1) { grid-row: span 2; }
.gal-img:nth-child(2) { grid-column: span 2; }

/* ---- Samenwerking Combo ---- */
.combo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 88px; align-items: start;
}
.combo-col h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04; margin: 0 0 20px; color: #F8F5EE;
}
.combo-col > p {
  font-size: 17px; line-height: 1.65; color: rgba(248,245,238,.58);
  margin: 0 0 36px; max-width: 44ch;
}
.combo-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.combo-items { border-top: 1px solid rgba(255,255,255,.08); }
.combo-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.ci-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(111,224,0,.1); display: grid; place-items: center; flex-shrink: 0;
}
.ci-ico svg {
  width: 20px; height: 20px;
  stroke: #6FE000; fill: none;
  stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6;
}
.combo-item strong {
  display: block; font-size: 15px; font-weight: 700; color: #F8F5EE; margin-bottom: 5px;
}
.combo-item p {
  font-size: 13.5px; color: rgba(248,245,238,.48); margin: 0; line-height: 1.55;
}

/* ---- Geschikt voor ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.event-tile {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px 22px; background: #fff;
  border: 1px solid rgba(0,0,0,.07); border-radius: 18px;
  text-decoration: none; color: #0A0A0A;
  transition: transform 240ms cubic-bezier(.22,.61,.36,1), box-shadow 240ms, border-color 240ms;
}
.event-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.1);
  border-color: rgba(111,224,0,.5);
  color: #0A0A0A;
}
.et-num {
  font-size: 12px; color: #6FE000; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.et-name {
  font-family: 'Kardige', sans-serif; font-size: 22px;
  line-height: 1.1; font-weight: 400; letter-spacing: -.01em; flex: 1;
}
.et-arr {
  width: 30px; height: 30px; border-radius: 50%;
  background: #E3E1D8; display: grid; place-items: center;
  transition: background 200ms, color 200ms; flex-shrink: 0;
  color: #0A0A0A;
}
.event-tile:hover .et-arr { background: #6FE000; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .combo-grid { grid-template-columns: 1fr; gap: 52px; }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 190px;
  }
  .gal-img:nth-child(1) { grid-row: span 2; }
  .gal-img:nth-child(2) { grid-column: span 1; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .phero-meta-item { padding-right: 20px; margin-right: 20px; }
}
@media (max-width: 600px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gal-img { height: 210px; }
  .gal-img:nth-child(1) { grid-row: span 1; }
  .gal-img:nth-child(2) { grid-column: span 1; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .phero-meta-items {
    flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 0;
  }
  .phero-meta-item {
    border-right: none; padding-right: 0; margin-right: 0;
  }
  .pmi-ext { margin-left: 0; }
}
