/* ================= HERO ================= */

.hero {
  padding: 5rem 1.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 420px;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 2px;
  opacity: 0.75;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.hero p {
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0 auto;
  max-width: 820px;
}

.cta-row {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #fff;
  color: #000;
}

.cta-ghost {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

/* ================= SECTION ================= */

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.section-sub {
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 860px;
}

/* ================= GRID ================= */

.recommendations {
  padding: 3.5rem 0 4.5rem;
  flex: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
  overflow: hidden;
  cursor: pointer;
}

.card:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.02) 45%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.disabled-card {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

.disabled-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
}

.disabled-card::before {
  display: none;
}

.disabled-card h3 {
  opacity: 0.85;
}

.disabled-card .card-cta {
  opacity: 0.6;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.disabled-card::after {
  content: "COMING SOON";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.5;
}

.card-cta.muted {
  border-bottom-color: rgba(255, 255, 255, 0.35);
  opacity: 0.75;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  border: 0;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}

.card .card-cta {
  position: relative;
  z-index: 7;
}

.card:hover h3 {
  opacity: 0.85;
}

.card .content a {
  position: relative;
  z-index: 6;
}

.card .cover,
.card .content {
  position: relative;
  z-index: 1;
}

/* ================= COVER ================= */

.cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.92);
  transform: scale(1.02);
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    opacity 0.25s ease;
  opacity: 0.9;
}

.card:hover .cover img {
  filter: grayscale(0) contrast(1.05) brightness(1);
  transform: scale(1.07);
  opacity: 1;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.content {
  padding: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  opacity: 0.85;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.6rem;
  margin-bottom: 1.2rem;
}

.content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  line-height: 1.25;
}

.content p {
  font-size: 0.96rem;
  line-height: 1.7;
  opacity: 0.82;
  margin-bottom: 1.2rem;
  max-width: 52ch;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.tag {
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.6rem;
  opacity: 0.85;
}

.meter {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.meter-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  opacity: 0.85;
}

.meter-row strong {
  font-weight: 600;
}

.content a {
  display: inline-block;
  margin-top: 1.4rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.card-cta {
  display: inline-block;
  margin-top: 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  opacity: 0.95;
  color: #fff;
  text-decoration: none;
}

.card-cta:hover {
  opacity: 0.7;
}

.card:hover .card-cta {
  opacity: 0.7;
}

.content a:hover {
  opacity: 0.7;
}

/* ================= CULT NOTE ================= */

.cult-note {
  margin-top: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.02);
  line-height: 1.7;
  opacity: 0.9;
}

.cult-note .title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.media-note {
  font-size: 0.8rem;
  opacity: 0.55;
  margin-top: 0.6rem;
  line-height: 1.6;
}

.media-disclaimer {
  opacity: 0.55;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 1.6rem;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 0.9rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.2rem;
  }
  .nav-links {
    gap: 1rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav-links a {
    padding: 0.25rem 0;
  }
  .wrap {
    padding: 0 1.2rem;
  }
  .content {
    padding: 1.6rem;
  }
}

/* === Newsletter card inside grid === */
.newsletter-card .newsletter-cover {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-cover-inner {
  padding: 2rem 1.25rem;
  text-align: center;
}

.newsletter-stamp {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  opacity: 0.95;
}

.newsletter-cover-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.newsletter-cover-sub {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  opacity: 0.75;
}

.newsletter-card .newsletter-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.newsletter-card input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.newsletter-card input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

/* Gebruik je bestaande .card-cta knop-stijl, maar zorg dat het button ook werkt */
.newsletter-card .card-cta {
  cursor: pointer;
  border: 0;
  width: 100%;
}

.newsletter-card {
  cursor: default;
}

.newsletter-card button.card-cta {
  background: transparent;
  color: #fff;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
}

.newsletter-card button.card-cta:hover {
  opacity: 0.8;
}

.newsletter-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
}
