/* ============================================================
   H2G Theme — hero.css
   ============================================================ */

.h2g-hero {
  position: relative;
  background-color: var(--color-black);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  padding: 120px 0 140px;
  overflow: hidden;
}

/* Radiale goud gloed rechts */
.h2g-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

/* ─── Diagonale bodem ────────────────────────────────────── */
.h2g-hero__diag {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--color-grey-100);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ─── Zwevende decoratieve blokken (logo-motief) ─────────── */
.h2g-deco {
  position: absolute;
  display: block;
  background-color: var(--color-accent);
  opacity: 0.12;
  border-radius: 3px;
}

.h2g-deco--1 {
  width: 56px;
  height: 56px;
  top: 12%;
  left: 5%;
  animation: h2g-float 8s ease-in-out infinite;
}

.h2g-deco--2 {
  width: 36px;
  height: 36px;
  top: 20%;
  left: 8.5%;
  opacity: 0.08;
  animation: h2g-float 10s ease-in-out infinite reverse;
}

.h2g-deco--3 {
  width: 20px;
  height: 20px;
  top: 28%;
  left: 12%;
  opacity: 0.06;
  animation: h2g-float 12s ease-in-out infinite;
}

@keyframes h2g-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(3deg); }
  66%       { transform: translateY(6px) rotate(-2deg); }
}

/* ─── Hero inner grid ────────────────────────────────────── */
.h2g-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ─── Hero: tekst ────────────────────────────────────────── */
.h2g-hero__content {
  position: relative;
  z-index: 1;
}

.h2g-hero__content .h2g-label {
  color: var(--color-accent);
}

.h2g-hero__titel {
  color: var(--color-white);
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 700;
}

.h2g-hero__titel em {
  font-style: normal;
  color: var(--color-accent);
  position: relative;
}

/* Goud onderlijn accent op 'spotlight' */
.h2g-hero__titel em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  border-radius: 2px;
}

.h2g-hero__subtitel {
  color: var(--color-grey-300);
  font-size: 18px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

/* ─── Stats strip ────────────────────────────────────────── */
.h2g-hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.h2g-hero__stat {
  display: flex;
  flex-direction: column;
}

.h2g-hero__stat-getal {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.h2g-hero__stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-grey-300);
  margin-top: 5px;
}

/* ─── Hero: logo visual ──────────────────────────────────── */
.h2g-hero__visual {
  position: relative;
  z-index: 1;
}

.h2g-hero__logo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1C1C1C 0%, #252525 50%, #1A1A1A 100%);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Goud accent balk links */
.h2g-hero__logo-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: 0 2px 2px 0;
}

/* Het logo zelf */
.h2g-hero__logo-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Subtiele goud shimmer overlay */
.h2g-hero__logo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 50%,
    rgba(201, 168, 76, 0.02) 100%
  );
  pointer-events: none;
}

/* Drijvend jaar-badge */
.h2g-hero__badge {
  position: absolute;
  bottom: -20px;
  right: 32px;
  background-color: var(--color-accent);
  color: var(--color-black);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
  z-index: 2;
}

.h2g-hero__badge-getal {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.h2g-hero__badge-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.7;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .h2g-hero__inner { gap: 56px; }
  .h2g-hero__titel { font-size: 48px; }
}

@media (max-width: 1024px) {
  .h2g-hero__inner { gap: 40px; }
  .h2g-hero__titel { font-size: 42px; }
}

@media (max-width: 768px) {
  .h2g-hero { padding: 80px 0 120px; }

  .h2g-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .h2g-hero__titel { font-size: 36px; }
  .h2g-hero__subtitel { font-size: 16px; }

  .h2g-hero__visual { order: -1; }

  .h2g-hero__badge {
    bottom: -16px;
    right: 16px;
  }

  .h2g-hero__stats {
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 32px;
  }

  .h2g-deco--1, .h2g-deco--2, .h2g-deco--3 { display: none; }
}

@media (max-width: 480px) {
  .h2g-hero__stat-getal { font-size: 28px; }
  .h2g-hero__logo-frame { padding: 32px 24px; }
}
