/* ============================================================
   OnDestination - Servicegebieden page styles
   Depends on: colors_and_type.css · home.css
   ============================================================ */

/* ======= PAGE HERO ======= */
.pg-hero {
  background: #000;
  color: #F8F5EE;
  padding: 128px 0 84px;
  position: relative;
  overflow: hidden;
}
.pg-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 70% at 4% 54%, rgba(111,224,0,.11), transparent 56%),
    radial-gradient(ellipse 42% 55% at 92% 14%, rgba(111,224,0,.06), transparent 52%);
}
.pg-hero-inner { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248,245,238,.30);
  margin-bottom: 36px;
}
.breadcrumb a {
  color: rgba(248,245,238,.30);
  text-decoration: none;
  transition: color 160ms;
}
.breadcrumb a:hover { color: #6FE000; }
.bc-sep { opacity: .22; }
.bc-active { color: rgba(248,245,238,.56); }

.pg-hero h1 {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(50px, 7.6vw, 118px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.032em;
  margin: 0 0 28px;
  max-width: 14ch;
}
.pg-hero h1 em {
  font-style: normal;
  color: #6FE000;
  text-shadow: 0 0 56px rgba(111,224,0,.38);
}
.pg-hero .lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.62;
  font-weight: 300;
  color: rgba(248,245,238,.60);
  max-width: 54ch;
  margin: 0;
}
.pg-stats {
  display: flex;
  margin-top: 62px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.pg-stat {
  padding: 30px 54px 30px 0;
  border-right: 1px solid rgba(255,255,255,.08);
  margin-right: 54px;
}
.pg-stat:last-child {
  border-right: none;
  margin-right: 0;
}
.pg-stat-val {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -.04em;
  color: #F8F5EE;
  margin: 0 0 8px;
}
.pg-stat-val em { font-style: normal; color: #6FE000; }
.pg-stat-label {
  font-size: 11.5px;
  color: rgba(248,245,238,.34);
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ======= INTRO BAND (beige) ======= */
.sg-intro {
  background: #E3E1D8;
  color: #0A0A0A;
  padding: 88px 0;
}
.sg-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 88px;
  align-items: center;
}
.sg-intro-title {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.026em;
  color: #0A0A0A;
  margin: 0;
}
.sg-intro-copy p {
  font-size: 17px;
  line-height: 1.74;
  color: #3a3a36;
  margin: 0 0 18px;
  max-width: 58ch;
}
.sg-intro-copy p:last-child { margin: 0; }

/* ======= AREAS SECTION ======= */
.areas-section {
  background: #0A0A0A;
  color: #F8F5EE;
  padding: 100px 0;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-card {
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  background: #141414;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  min-height: 194px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition:
    border-color 240ms cubic-bezier(.22,.61,.36,1),
    transform 240ms cubic-bezier(.22,.61,.36,1),
    background 240ms;
}
.area-card:hover {
  border-color: rgba(111,224,0,.44);
  transform: translateY(-4px);
  background: rgba(111,224,0,.032);
}
.area-card.home-base {
  border-color: rgba(111,224,0,.24);
  background: rgba(111,224,0,.024);
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 115%, rgba(111,224,0,.09), transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
  border-radius: inherit;
}
.area-card:hover::before { opacity: 1; }
.area-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.area-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(248,245,238,.18);
  text-transform: uppercase;
}
.home-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(111,224,0,.12);
  color: #6FE000;
  border: 1px solid rgba(111,224,0,.24);
  white-space: nowrap;
  flex-shrink: 0;
}
.area-name {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(21px, 1.9vw, 29px);
  font-weight: 400;
  letter-spacing: -.016em;
  line-height: 1.06;
  color: #F8F5EE;
  margin: 16px 0 5px;
  transition: color 220ms;
}
.area-card:hover .area-name,
.area-card.home-base .area-name { color: #6FE000; }
.area-desc {
  font-size: 12px;
  color: rgba(248,245,238,.30);
  line-height: 1.46;
  margin: 0 0 auto;
  padding-bottom: 18px;
}
.area-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.area-region-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(248,245,238,.22);
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}
.area-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 220ms cubic-bezier(.22,.61,.36,1), transform 220ms;
}
.area-card:hover .area-arrow {
  background: #6FE000;
  transform: translateX(2px);
}
.area-arrow svg { transition: stroke 220ms; }
.area-card:hover .area-arrow svg { stroke: #000; }

/* ======= DETAIL PAGE HERO ======= */
.detail-hero {
  background: #000;
  color: #F8F5EE;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.detail-hero-copy .eye {
  display: flex;
}

.detail-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 54% 64% at 8% 52%, rgba(111,224,0,.12), transparent 53%);
}
.detail-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: end;
  padding-bottom: 72px;
}
.detail-back {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,245,238,.28);
  margin-bottom: 36px;
  text-decoration: none;
  transition: color 160ms;
}
.detail-back:hover { color: #6FE000; }
.detail-back svg { transform: rotate(180deg); }

.detail-hero h1 {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(46px, 6.2vw, 92px);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.032em;
  margin: 0 0 26px;
}
.detail-hero h1 em { font-style: normal; color: #6FE000; }
.detail-hero .lead {
  font-size: 18px;
  line-height: 1.66;
  font-weight: 300;
  color: rgba(248,245,238,.64);
  max-width: 50ch;
  margin: 0 0 38px;
}
.detail-hero-img {
  align-self: stretch;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  min-height: 400px;
}
.detail-hero-img .ph {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Highlights bar */
.detail-highlights {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.detail-highlights-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hl-cell {
  padding: 34px 28px 34px 0;
  border-right: 1px solid rgba(255,255,255,.07);
}
.hl-cell:first-child { padding-left: 0; }
.hl-cell:last-child { border-right: none; }
.hl-val {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
  color: #6FE000;
  margin: 0 0 7px;
  white-space: nowrap;
}
.hl-title {
  font-size: 14px;
  font-weight: 700;
  color: #F8F5EE;
  margin: 0 0 4px;
}
.hl-note {
  font-size: 12px;
  color: rgba(248,245,238,.36);
  margin: 0;
  line-height: 1.52;
}

/* Services */
.detail-services {
  background: #000;
  color: #F8F5EE;
  padding: 100px 0;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px 26px;
  transition: border-color 220ms, transform 220ms;
}
.svc-card:hover {
  border-color: rgba(111,224,0,.30);
  transform: translateY(-3px);
}
.svc-icon {
  width: 42px;
  height: 42px;
  background: rgba(111,224,0,.10);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6FE000;
  margin-bottom: 18px;
}
.svc-icon svg { width: 20px; height: 20px; }
.svc-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #F8F5EE;
  margin: 0 0 8px;
}
.svc-card p {
  font-size: 14px;
  line-height: 1.62;
  color: rgba(248,245,238,.44);
  margin: 0;
}

/* Event types */
.detail-events {
  background: #E3E1D8;
  color: #0A0A0A;
  padding: 88px 0;
}
.event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.event-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
  text-decoration: none;
  transition: all 200ms cubic-bezier(.22,.61,.36,1);
}
.event-pill:hover {
  background: #6FE000;
  border-color: #6FE000;
  color: #000;
}

/* Other service areas */
.other-areas {
  background: #0A0A0A;
  color: #F8F5EE;
  padding: 84px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.other-areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 36px;
}
.other-area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(248,245,238,.66);
  text-decoration: none;
  transition: all 180ms;
}
.other-area-link:hover {
  background: rgba(111,224,0,.07);
  border-color: rgba(111,224,0,.28);
  color: #F8F5EE;
}
.oal-arrow {
  color: #6FE000;
  font-size: 14px;
  opacity: 0;
  transition: opacity 160ms, transform 160ms;
  transform: translateX(-4px);
  flex-shrink: 0;
}
.other-area-link:hover .oal-arrow {
  opacity: 1;
  transform: none;
}

.venues-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

/* ======= VENUE CARDS ======= */
.venues-section {
  background: #0A0A0A;
  color: #F8F5EE;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.venue-card {
  display: flex;
  flex-direction: column;
  background: #141414;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 240ms cubic-bezier(.22,.61,.36,1), transform 240ms cubic-bezier(.22,.61,.36,1);
}
.venue-card:hover {
  border-color: rgba(111,224,0,.38);
  transform: translateY(-4px);
}
.venue-card-img { flex-shrink: 0; overflow: hidden; }
.venue-card-img .ph { aspect-ratio: 4/3; width: 100%; height: auto; }
.venue-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.venue-type {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #6FE000;
  margin: 0 0 9px;
}
.venue-name {
  font-family: 'Kardige', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.012em;
  line-height: 1.1;
  color: #F8F5EE;
  margin: 0 0 8px;
  transition: color 200ms;
}
.venue-card:hover .venue-name { color: #F8F5EE; }
.venue-desc {
  font-size: 13px;
  line-height: 1.58;
  color: rgba(248,245,238,.40);
  margin: 0 0 16px;
  flex: 1;
}
.venue-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(248,245,238,.28);
  transition: color 180ms;
}
.venue-card:hover .venue-foot { color: #6FE000; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .other-areas-grid { grid-template-columns: repeat(4, 1fr); }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pg-stats { flex-wrap: wrap; }
  .pg-stat {
    width: 50%;
    padding: 22px 22px 22px 0;
    margin-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .pg-stat:nth-child(2) { border-right: none; padding-right: 0; }
  .pg-stat:nth-child(n+3) { border-bottom: none; }
  .sg-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-hero-layout { grid-template-columns: 1fr; }
  .detail-hero-img { display: none; }
  .detail-highlights-inner { grid-template-columns: repeat(2, 1fr); }
  .hl-cell { padding: 24px 20px; }
  .hl-cell:first-child { padding-left: 20px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .other-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .venues-head-row { flex-direction: column; gap: 16px; }
  .venues-head-row .arrow-link { align-self: flex-start; }
}
@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .detail-highlights-inner { grid-template-columns: repeat(3, 1fr); }
  .hl-cell { padding: 18px 10px; }
  .hl-cell:first-child { padding-left: 10px; }
  .hl-val { font-size: 20px; white-space: nowrap; }
  .hl-title { font-size: 11px; }
  .hl-note { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .other-areas-grid { grid-template-columns: 1fr 1fr; }
}
