/* ==========================================================
   hobbygruppe.css — TTC Rheindahlen 1950
   Styles for the Hobbygruppe page.
   Depends on: variables.css, main.css
   ========================================================== */

/* ── Intro paragraph ─────────────────────────────────────── */

.hobby-intro-text {
  font-size: 1.15rem !important;
  font-weight: 600;
  color: rgb(var(--text-rgb) / 0.9) !important;
  margin-bottom: 40px;
  max-width: 820px;
}

/* ── Image + text grid ───────────────────────────────────── */

.hobby-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hobby-image-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hobby-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── CTA section ─────────────────────────────────────────── */

.hobby-cta-section {
  background: var(--cta-gradient);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
  text-align: center;
}

.hobby-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hobby-cta-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.hobby-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.hobby-cta-sub {
  font-size: 1.05rem;
  color: rgb(var(--text-rgb) / 0.55);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── Light mode: CTA has a dark bg, text must stay white ──── */
[data-theme="light"] .hobby-cta-title { color: #ffffff; }
[data-theme="light"] .hobby-cta-label { color: #ffffff; }
[data-theme="light"] .hobby-cta-sub   { color: rgba(255, 255, 255, 0.68); }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 760px) {
  .hobby-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
