/*
  Almádi SportFeszt 2026 – statikus egyoldalas weboldal
  CM Design (Creative Management Kft.)
*/



/* =========================================================================
   1) EREDETI DESIGN CSS — a mockupból, változtatás nélkül átemelve
   ========================================================================= */
    :root {
      /* A design-változók a theme.json paletta preset-változóira épülnek
         (egyetlen igazságforrás). A második érték literál fallback, hogy
         WordPress nélkül (statikus előnézet) is helyesen jelenjen meg.
         A --asf-blue-deep és --asf-sky nincs a palettában, ezért literál. */
      --asf-blue: #008ccf;
      --asf-blue-dark: #05324d;
      --asf-blue-deep: #062a40;
      --asf-sky: #eaf8ff;
      --asf-yellow: #ffd447;
      --asf-orange: #ff6b35;
      --asf-green: #45b36b;
      --asf-sand: #fff7e6;
      --asf-white: #ffffff;
      --asf-text: #06324d;
      --asf-muted: #526a7a;
      --asf-border: rgba(0, 140, 207, .16);
      --asf-shadow: 0 24px 70px rgba(0, 60, 95, .12);
      --asf-radius-lg: 34px;
      --asf-radius-md: 22px;
      --asf-radius-sm: 14px;
      --asf-container: 1180px;
    }

    html {
      /* A sima görgetést a Lenis adja (assets/js/smooth-scroll.js) — a CSS
         scroll-behavior:smooth ütközne a Lenis képkockánkénti görgetésével,
         ezért itt nincs. A scroll-padding-top a natív ugráshoz kell
         (JS nélkül / reduced-motion esetén), hogy ne csússzon a fejléc alá. */
      scroll-padding-top: 96px;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--asf-text);
      background: #f3fbff;
    }

    .asf-page,
    .asf-page * {
      box-sizing: border-box;
    }

    .asf-page {
      /* FONTOS: itt NINCS overflow:hidden. Egy overflow:hidden az ősön
         eltörné a .asf-header position:sticky viselkedését. A hero
         dekorációit a .asf-hero és a .asf-hero-visual saját
         overflow:hidden-je vágja le. */
      background: var(--asf-white);
    }

    .asf-page a {
      color: inherit;
      text-decoration: none;
    }

    /* Akadálymentesség: „Ugrás a tartalomra" link – csak fókuszban látszik. */
    .asf-skip-link {
      position: absolute;
      left: 12px;
      top: -80px;
      z-index: 200;
      padding: 10px 18px;
      border-radius: 0 0 12px 12px;
      background: var(--asf-blue-dark);
      color: #fff;
      font-weight: 900;
      transition: top .2s ease;
    }

    .asf-skip-link:focus { top: 0; }

    .asf-container {
      width: min(var(--asf-container), calc(100% - 40px));
      margin: 0 auto;
    }

    .asf-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .92);
      border-bottom: 1px solid rgba(0, 140, 207, .12);
      backdrop-filter: blur(18px);
    }

    .asf-header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .asf-logo {
      display: flex;
      align-items: center;
      gap: 13px;
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 950;
      letter-spacing: -.04em;
      color: var(--asf-blue-dark);
      white-space: nowrap;
    }

    .asf-logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--asf-blue), var(--asf-green));
      position: relative;
      flex: 0 0 auto;
      box-shadow: 0 12px 28px rgba(0, 140, 207, .25);
    }

    .asf-logo-mark::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      border: 4px solid var(--asf-yellow);
      border-radius: 999px;
      right: -5px;
      top: -5px;
      background: #fff;
    }

    .asf-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 15px;
      font-weight: 900;
      color: #24566d;
    }

    .asf-nav a:not(.asf-nav-cta) {
      padding: 10px 0;
      transition: color .2s ease;
    }

    .asf-nav a:not(.asf-nav-cta):hover {
      color: var(--asf-blue);
    }

    /* Hamburger-gomb – desktopon rejtve, mobilon a media query mutatja. */
    .asf-nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 46px;
      height: 46px;
      padding: 0;
      border: 0;
      border-radius: 12px;
      background: #eaf8ff;
      cursor: pointer;
      flex: 0 0 auto;
    }

    .asf-nav-toggle-bar {
      display: block;
      width: 22px;
      height: 2.5px;
      margin: 0 auto;
      border-radius: 999px;
      background: var(--asf-blue-dark);
      transition: transform .2s ease, opacity .2s ease;
    }

    .asf-nav-toggle[aria-expanded="true"] .asf-nav-toggle-bar:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .asf-nav-toggle[aria-expanded="true"] .asf-nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }

    .asf-nav-toggle[aria-expanded="true"] .asf-nav-toggle-bar:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    .asf-nav-cta,
    .asf-btn,
    .asf-small-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      cursor: pointer;
      font-weight: 950;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .asf-nav-cta {
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      color: #fff;
      background: var(--asf-orange);
      box-shadow: 0 14px 32px rgba(255, 107, 53, .28);
    }

    .asf-nav-cta:hover,
    .asf-btn:hover,
    .asf-small-btn:hover {
      transform: translateY(-2px);
    }

    .asf-hero {
      min-height: 720px;
      position: relative;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(110deg, rgba(6, 50, 77, .94) 0%, rgba(0, 140, 207, .78) 48%, rgba(0, 166, 214, .24) 100%),
        radial-gradient(circle at 82% 22%, rgba(255, 212, 71, .95) 0 8%, transparent 9%),
        linear-gradient(135deg, #5bd7f3 0%, #008ccf 52%, #06324d 100%);
      /* Valódi kép esetén példa:
      background-image: linear-gradient(110deg, rgba(6,50,77,.82), rgba(0,140,207,.56)), url('/wp-content/uploads/almadi-sportfest-hero.jpg');
      background-size: cover;
      background-position: center;
      */
    }

    .asf-hero::before {
      content: "";
      position: absolute;
      left: -10%;
      right: -10%;
      bottom: -230px;
      height: 370px;
      border-radius: 50% 50% 0 0;
      background: rgba(255, 255, 255, .95);
      transform: rotate(-2deg);
    }

    .asf-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
      gap: 70px;
      align-items: center;
      padding: 92px 0 120px;
    }

    .asf-kicker,
    .asf-eyebrow {
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 13px;
      font-weight: 950;
    }

    .asf-kicker {
      color: var(--asf-yellow);
      margin-bottom: 22px;
    }

    .asf-eyebrow {
      color: var(--asf-blue);
      margin-bottom: 16px;
    }

    .asf-hero h1 {
      max-width: 760px;
      margin: 0 0 28px;
      font-size: clamp(48px, 7.3vw, 92px);
      line-height: .92;
      letter-spacing: -.065em;
    }

    .asf-hero p {
      max-width: 710px;
      margin: 0;
      color: rgba(255, 255, 255, .88);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.55;
    }

    .asf-hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 42px;
    }

    .asf-btn {
      min-height: 58px;
      padding: 0 28px;
      border-radius: 999px;
      font-size: 17px;
    }

    .asf-btn-yellow {
      background: var(--asf-yellow);
      color: var(--asf-blue-dark);
      box-shadow: 0 18px 42px rgba(255, 212, 71, .28);
    }

    .asf-btn-glass {
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .32);
      background: rgba(255, 255, 255, .15);
    }

    .asf-hero-visual {
      position: relative;
      min-height: 500px;
      border-radius: 44px;
      overflow: hidden;
      padding: 34px;
      background: linear-gradient(145deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .08));
      border: 1px solid rgba(255, 255, 255, .28);
      box-shadow: 0 34px 90px rgba(0, 35, 62, .30);
    }

    .asf-sun {
      position: absolute;
      right: 72px;
      top: 62px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: var(--asf-yellow);
      box-shadow: 0 0 0 24px rgba(255, 212, 71, .18);
    }

    .asf-wave,
    .asf-wave-2 {
      position: absolute;
      left: -80px;
      right: -80px;
      bottom: 92px;
      height: 170px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .42);
      transform: rotate(-8deg);
    }

    .asf-wave-2 {
      bottom: 38px;
      background: rgba(255, 255, 255, .72);
      transform: rotate(4deg);
    }

    .asf-sport-figure {
      position: absolute;
      left: 70px;
      top: 132px;
      width: 250px;
      height: 250px;
      border: 22px solid rgba(255, 255, 255, .72);
      border-radius: 50%;
    }

    .asf-sport-figure::before {
      content: "";
      position: absolute;
      left: 120px;
      top: 124px;
      width: 150px;
      height: 24px;
      border-radius: 999px;
      background: var(--asf-orange);
      transform: rotate(-24deg);
      box-shadow: -75px 64px 0 var(--asf-green);
    }

    .asf-sport-figure::after {
      content: "";
      position: absolute;
      left: 110px;
      top: 35px;
      width: 60px;
      height: 60px;
      border-radius: 999px;
      background: #fff;
      box-shadow: 110px 55px 0 rgba(255, 212, 71, .9);
    }

    .asf-hero-chips {
      position: absolute;
      left: 34px;
      right: 34px;
      bottom: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      z-index: 3;
    }

    .asf-chip {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--asf-blue-dark);
      background: rgba(255, 255, 255, .78);
      font-size: 14px;
      font-weight: 950;
    }

    .asf-section {
      padding: clamp(70px, 8vw, 108px) 0;
      position: relative;
    }

    .asf-section-sand {
      background: var(--asf-sand);
    }

    .asf-section-sky {
      background: linear-gradient(180deg, #eefaff, #ffffff);
    }

    .asf-section-title {
      max-width: 840px;
      margin: 0 auto 48px;
      text-align: center;
    }

    .asf-section-title-left {
      margin-left: 0;
      text-align: left;
    }

    .asf-section-title h1,
    .asf-section-title h2 {
      margin: 0;
      font-size: clamp(36px, 5vw, 64px);
      line-height: .98;
      letter-spacing: -.055em;
      color: var(--asf-blue-dark);
    }

    .asf-section-title p {
      margin: 20px 0 0;
      color: var(--asf-muted);
      font-size: 19px;
      line-height: 1.65;
    }

    .asf-choice-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px;
      margin-top: -54px;
      position: relative;
      z-index: 5;
    }

    .asf-choice-card {
      min-height: 310px;
      padding: clamp(30px, 4vw, 44px);
      border-radius: var(--asf-radius-lg);
      color: #fff;
      overflow: hidden;
      position: relative;
      box-shadow: var(--asf-shadow);
    }

    .asf-choice-card::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -100px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .13);
    }

    .asf-choice-blue {
      background: linear-gradient(135deg, #005f8f, var(--asf-blue-dark));
    }

    .asf-choice-green {
      background: linear-gradient(135deg, #0e6b3f, #075055);
    }

    .asf-date {
      display: inline-flex;
      margin-bottom: 24px;
      color: var(--asf-yellow);
      font-size: 14px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .asf-choice-card h2 {
      margin: 0 0 16px;
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -.05em;
    }

    .asf-choice-card p {
      max-width: 560px;
      margin: 0 0 26px;
      color: rgba(255, 255, 255, .92);
      font-size: 18px;
      line-height: 1.55;
    }

    .asf-choice-link {
      display: inline-flex;
      align-items: center;
      font-weight: 950;
      color: #fff;
    }

    .asf-choice-link::after {
      content: "→";
      margin-left: 10px;
    }

    .asf-intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
      gap: 30px;
      align-items: stretch;
    }

    .asf-info-panel,
    .asf-card,
    .asf-audience-card,
    .asf-sport-card,
    .asf-location-card,
    .asf-faq-item {
      border: 1px solid var(--asf-border);
      background: #fff;
      box-shadow: 0 18px 46px rgba(0, 60, 95, .08);
    }

    .asf-info-panel {
      padding: clamp(30px, 4vw, 42px);
      border-radius: var(--asf-radius-lg);
    }

    .asf-info-panel h3 {
      margin: 0 0 18px;
      font-size: clamp(30px, 3vw, 42px);
      line-height: 1.06;
      letter-spacing: -.04em;
      color: var(--asf-blue-dark);
    }

    .asf-info-panel p {
      margin: 16px 0 0;
      color: var(--asf-muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .asf-info-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 24px;
    }

    .asf-pill {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: #eaf8ff;
      color: var(--asf-blue-dark);
      font-size: 14px;
      font-weight: 950;
    }

    .asf-pill-orange {
      color: var(--asf-blue-dark);
      background: var(--asf-orange);
    }

    .asf-pill-yellow {
      color: var(--asf-blue-dark);
      background: var(--asf-yellow);
    }

    .asf-audience-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .asf-audience-card {
      padding: 26px;
      border-radius: var(--asf-radius-md);
    }

    .asf-audience-icon,
    .asf-sport-icon,
    .asf-weekend-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      font-weight: 950;
    }

    .asf-audience-icon {
      width: 46px;
      height: 46px;
      margin-bottom: 18px;
      color: #fff;
      /* Kicsit sötétebb kék, hogy a fehér szám is WCAG AA legyen (a --asf-blue
         élénk kéken a fehér csak ~3,7:1). */
      background: #0072ac;
    }

    .asf-audience-card h4,
    .asf-sport-card h3 {
      margin: 0 0 8px;
      font-size: 21px;
      letter-spacing: -.02em;
    }

    .asf-audience-card p {
      margin: 0;
      color: var(--asf-muted);
      line-height: 1.5;
    }

    .asf-program-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .asf-program-card,
    .asf-weekend-card {
      border-radius: var(--asf-radius-md);
      background: #fff;
      border: 1px solid var(--asf-border);
      box-shadow: 0 18px 46px rgba(0, 60, 95, .08);
      overflow: hidden;
    }

    .asf-program-card summary,
    .asf-faq-item summary {
      list-style: none;
    }

    .asf-program-card summary::-webkit-details-marker,
    .asf-faq-item summary::-webkit-details-marker {
      display: none;
    }

    .asf-program-summary {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
      padding: 24px;
      cursor: pointer;
    }

    .asf-program-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-bottom: 14px;
    }

    .asf-program-summary h3 {
      margin: 0;
      font-size: 26px;
      line-height: 1.1;
      letter-spacing: -.035em;
      color: var(--asf-blue-dark);
    }

    .asf-plus {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--asf-blue-dark);
      background: var(--asf-orange);
      font-size: 26px;
      font-weight: 800;
      transition: transform .2s ease;
    }

    details[open] .asf-plus {
      transform: rotate(45deg);
    }

    .asf-program-body {
      padding: 0 24px 26px;
      color: var(--asf-muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .asf-program-body p {
      margin: 0 0 14px;
    }

    .asf-program-body dl {
      display: grid;
      /* Az első oszlop legalább 135px (rövid címkék igazítása), de a hosszabb
         címkékhez (pl. „Eredményhirdetés") kiszélesedik, hogy ne csússzon
         össze az értékkel. */
      grid-template-columns: minmax(135px, max-content) 1fr;
      gap: 8px 16px;
      margin: 18px 0 0;
    }

    .asf-program-body dt {
      font-weight: 950;
      color: var(--asf-blue-dark);
    }

    .asf-program-body dd {
      margin: 0;
    }

    .asf-cta-band {
      margin-top: 42px;
      padding: clamp(30px, 5vw, 48px);
      border-radius: var(--asf-radius-lg);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      color: #fff;
      background: linear-gradient(135deg, var(--asf-blue-dark), var(--asf-blue));
      box-shadow: var(--asf-shadow);
    }

    .asf-cta-band h2 {
      margin: 0 0 10px;
      font-size: clamp(30px, 3.5vw, 48px);
      line-height: 1.05;
      letter-spacing: -.045em;
    }

    .asf-cta-band p {
      margin: 0;
      color: rgba(255, 255, 255, .78);
      font-size: 18px;
      line-height: 1.55;
    }

    .asf-sports-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .asf-sport-card {
      min-height: 145px;
      padding: 24px 18px;
      border-radius: var(--asf-radius-md);
      text-align: center;
    }

    .asf-sport-icon {
      width: 58px;
      height: 58px;
      margin-bottom: 15px;
      color: #fff;
      background: linear-gradient(135deg, var(--asf-blue), var(--asf-green));
      box-shadow: 0 12px 26px rgba(0, 140, 207, .22);
    }

    .asf-notice {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 24px;
      padding: 22px 26px;
      border-radius: var(--asf-radius-md);
      background: var(--asf-yellow);
      color: var(--asf-blue-dark);
      box-shadow: 0 14px 34px rgba(255, 212, 71, .24);
    }

    .asf-notice b {
      flex: 0 0 auto;
      font-size: 18px;
      font-weight: 950;
    }

    .asf-notice span {
      line-height: 1.55;
    }

    .asf-weekend-list {
      display: grid;
      gap: 18px;
    }

    .asf-weekend-card {
      display: grid;
      grid-template-columns: 94px 1fr;
      gap: 24px;
      padding: 28px;
      align-items: start;
      position: relative;
    }

    .asf-weekend-card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 7px;
      background: var(--asf-blue);
    }

    .asf-weekend-card.asf-online::before {
      background: var(--asf-orange);
    }

    .asf-weekend-num {
      width: 72px;
      height: 72px;
      color: #fff;
      background: var(--asf-blue-dark);
      font-size: 22px;
    }

    .asf-weekend-date {
      margin-bottom: 8px;
      color: var(--asf-blue);
      font-size: 14px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .10em;
    }

    .asf-weekend-content h3 {
      margin: 0;
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.05;
      letter-spacing: -.045em;
      color: var(--asf-blue-dark);
    }

    .asf-weekend-content h4 {
      margin: 8px 0 16px;
      /* Sötétebb korall a fehér háttéren olvashatóságért (a --asf-orange
         narancs fehéren csak ~2,8:1). */
      color: #c74a17;
      font-size: 20px;
    }

    .asf-weekend-content p {
      max-width: 850px;
      margin: 0 0 18px;
      color: var(--asf-muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .asf-sports-line {
      margin-bottom: 18px;
      color: var(--asf-blue-dark);
      font-weight: 850;
    }

    .asf-small-btn {
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 14px;
    }

    .asf-small-btn-primary {
      color: #fff;
      background: var(--asf-orange);
      box-shadow: 0 12px 26px rgba(255, 107, 53, .22);
    }

    .asf-small-btn-soft {
      color: var(--asf-blue-dark);
      background: #eaf8ff;
    }

    .asf-location-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .asf-location-card {
      padding: 30px;
      border-radius: var(--asf-radius-lg);
    }

    .asf-location-card h3 {
      margin: 0 0 10px;
      font-size: 32px;
      letter-spacing: -.04em;
      color: var(--asf-blue-dark);
    }

    .asf-location-card p {
      margin: 0 0 22px;
      color: var(--asf-muted);
      line-height: 1.6;
    }

    /* Térkép – kattintásra betöltő (privacy-first). Alap: mintás placeholder. */
    .asf-map {
      min-height: 240px;
      border-radius: 24px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(0, 140, 207, .12), rgba(69, 179, 107, .14)),
        repeating-linear-gradient(45deg, rgba(0, 140, 207, .10) 0 1px, transparent 1px 18px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .asf-map.is-loaded { background: none; }

    .asf-map iframe {
      width: 100%;
      height: 100%;
      min-height: 240px;
      border: 0;
      display: block;
    }

    .asf-map-load {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 15px 26px;
      border: 0;
      border-radius: var(--asf-radius-md);
      cursor: pointer;
      background: #fff;
      color: var(--asf-blue-dark);
      font-family: inherit;
      box-shadow: 0 12px 30px rgba(0, 60, 95, .14);
      transition: transform .2s ease;
    }

    .asf-map-load:hover { transform: translateY(-2px); }
    .asf-map-load-title { font-weight: 950; font-size: 16px; }
    .asf-map-load-note { font-size: 12px; color: var(--asf-muted); font-weight: 700; }

    .asf-faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .asf-faq-item {
      border-radius: var(--asf-radius-md);
      overflow: hidden;
    }

    .asf-faq-item summary {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      padding: 22px 24px;
      cursor: pointer;
      font-weight: 950;
      font-size: 18px;
    }

    .asf-faq-item p {
      margin: 0;
      padding: 0 24px 24px;
      color: var(--asf-muted);
      line-height: 1.6;
    }

    .asf-footer {
      padding: 58px 0;
      color: #fff;
      background: var(--asf-blue-deep);
    }

    .asf-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      align-items: flex-start;
    }

    .asf-footer h2 {
      margin: 0 0 14px;
      font-size: clamp(30px, 4vw, 42px);
      letter-spacing: -.045em;
    }

    .asf-footer p {
      max-width: 520px;
      margin: 0;
      color: rgba(255, 255, 255, .68);
      line-height: 1.55;
    }

    .asf-footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      color: rgba(255, 255, 255, .82);
      font-weight: 900;
    }

    .asf-footer-domain {
      margin-top: 38px;
      color: rgba(255, 255, 255, .44);
      font-size: 14px;
    }

    /* Lábléc alsó sáv: elválasztó vonal + domain balra, copyright jobbra. */
    .asf-footer-bottom {
      margin-top: 44px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px 24px;
      color: rgba(255, 255, 255, .48);
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      .asf-hero-inner,
      .asf-intro-grid {
        grid-template-columns: 1fr;
      }

      .asf-hero-visual {
        min-height: 420px;
      }

      .asf-choice-grid,
      .asf-location-grid,
      .asf-faq-grid {
        grid-template-columns: 1fr;
      }

      .asf-sports-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 820px) {
      .asf-header-inner {
        min-height: 68px;
      }

      .asf-nav-toggle {
        display: flex;
      }

      /* A menü legördülő panel a sticky sáv alatt, teljes szélességben. */
      .asf-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px 20px 18px;
        background: rgba(255, 255, 255, .98);
        border-bottom: 1px solid rgba(0, 140, 207, .12);
        box-shadow: 0 24px 40px rgba(0, 60, 95, .12);
        backdrop-filter: blur(18px);
      }

      .asf-nav.is-open {
        display: flex;
      }

      .asf-nav a:not(.asf-nav-cta) {
        padding: 13px 4px;
        border-bottom: 1px solid rgba(0, 140, 207, .08);
      }

      .asf-nav-cta {
        align-self: flex-start;
        margin-top: 12px;
      }

      .asf-hero {
        min-height: auto;
      }

      .asf-hero-inner {
        padding: 68px 0 100px;
        gap: 42px;
      }

      .asf-choice-grid {
        margin-top: -34px;
      }

      .asf-audience-grid,
      .asf-program-grid {
        grid-template-columns: 1fr;
      }

      .asf-cta-band,
      .asf-footer-inner,
      .asf-notice {
        flex-direction: column;
        align-items: flex-start;
      }

      .asf-sports-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .asf-weekend-card {
        grid-template-columns: 1fr;
        gap: 18px;
      }
    }

    @media (max-width: 560px) {
      .asf-container {
        width: min(100% - 28px, var(--asf-container));
      }

      .asf-nav {
        font-size: 14px;
      }

      .asf-nav-cta {
        min-height: 42px;
        padding: 0 16px;
      }

      .asf-hero-visual {
        min-height: 310px;
        border-radius: 28px;
      }

      .asf-sun {
        width: 76px;
        height: 76px;
        right: 36px;
        top: 38px;
      }

      .asf-sport-figure {
        left: 38px;
        top: 105px;
        width: 170px;
        height: 170px;
        border-width: 16px;
      }

      .asf-sport-figure::before {
        left: 74px;
        top: 78px;
        width: 100px;
        height: 18px;
      }

      .asf-sport-figure::after {
        left: 72px;
        top: 20px;
        width: 44px;
        height: 44px;
      }

      .asf-sports-grid {
        grid-template-columns: 1fr;
      }

      .asf-program-summary {
        grid-template-columns: 1fr auto;
        padding: 20px;
      }

      .asf-program-body {
        padding: 0 20px 22px;
      }

      .asf-program-body dl {
        grid-template-columns: 1fr;
      }
    }

/* =========================================================================
   GYIK „+” jelző (statikus <details> változat)
   ========================================================================= */
.asf-faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 900;
  color: var(--asf-blue);
  font-size: 24px;
  transition: transform .2s ease;
}
.asf-faq-item[open] summary::after { transform: rotate(45deg); }

/* =========================================================================
   Self-hosted Inter (GDPR – nincs Google Fonts CDN hívás)
   ========================================================================= */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* =========================================================================
   LENIS SMOOTH SCROLL (self-hosted)
   ========================================================================= */
html.lenis,
html.lenis body { height: auto; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }

.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

.lenis.lenis-stopped { overflow: hidden; }

.lenis.lenis-smooth iframe { pointer-events: none; }

/* Csökkentett mozgás igénye esetén nincs sima görgetés (a Lenis is kikapcsol). */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =========================================================================
   KONTRASZT-JAVÍTÁSOK (WCAG AA)
   A fenti ".asf-page a { color: inherit }" magasabb specificitással (0-1-1)
   felülírná a gombok saját szövegszínét (0-1-0), emiatt a sárga gomb szövege
   fehér lett (olvashatatlan). Itt explicit, jó kontrasztú színt adunk:
   - narancs háttéren sötét kék szöveg: #05324d / #ff6b35 = 4,76:1 (AA)
   - sárga háttéren sötét kék szöveg: 8,9:1
   ========================================================================= */
.asf-page a.asf-btn-yellow { color: var(--asf-blue-dark); }
.asf-page a.asf-btn-glass { color: #fff; }
.asf-page a.asf-nav-cta { color: var(--asf-blue-dark); }
.asf-page a.asf-small-btn-primary { color: var(--asf-blue-dark); }
.asf-page a.asf-choice-link { color: #fff; }
