*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue:    #0B4F8A;
      --blue-lt: #1A6DB5;
      --teal:    #0A8A6E;
      --gold:    #E8A220;
      --red:     #EA0D0D;
      --dark:    #0D1B2A;
      --mid:     #1E3A52;
      --light:   #F4F8FC;
      --white:   #ffffff;
      --text:    #2C3E50;
      --muted:   #6B8099;
      --radius:  12px;
      --shadow:  0 4px 24px rgba(11,79,138,.12);
      --shadow-lg: 0 12px 48px rgba(11,79,138,.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 2rem;
      height: 96px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(180deg, rgba(160,6,6,0.65) 0%, rgba(220,12,12,0.60) 100%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 3px solid rgba(0,0,0,.2);
      transition: height .35s ease, background .3s ease, padding .35s ease;
    }
    nav.scrolled {
      height: 64px;
      background: linear-gradient(180deg, rgba(160,6,6,0.95) 0%, rgba(220,12,12,0.92) 100%);
      padding: 0 2rem;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
    }
    .nav-logo img {
      height: 54px;
      width: auto;
      filter: brightness(0) invert(1);
      transition: height .35s ease;
    }
    nav.scrolled .nav-logo img {
      height: 44px;
    }
    .nav-logo span {
      color: var(--white);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: .02em;
      line-height: 1.3;
      transition: font-size .35s ease;
    }
    nav.scrolled .nav-logo span {
      font-size: .9rem;
    }

    .nav-links {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 1.1rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,.8);
      text-decoration: none;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .03em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

    .nav-tax-link {
      color: var(--white) !important;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.45);
      padding: .35rem .85rem;
      border-radius: 50px;
      font-weight: 700 !important;
      letter-spacing: .03em !important;
      transition: background .2s, border-color .2s !important;
    }
    .nav-tax-link:hover {
      background: rgba(255,255,255,.3) !important;
      border-color: var(--white) !important;
      color: var(--gold) !important;
    }

    .nav-member {
      color: var(--white) !important;
      border: 1px solid rgba(255,255,255,.6);
      padding: .5rem 1.1rem;
      border-radius: 50px;
      font-weight: 700 !important;
      transition: background .2s, border-color .2s;
    }
    .nav-member:hover { background: rgba(255,255,255,.15); border-color: var(--white) !important; }

    .nav-cta {
      background: var(--white);
      color: var(--red) !important;
      padding: .5rem 1.25rem;
      border-radius: 50px;
      font-weight: 700 !important;
      transition: background .2s, transform .2s;
    }
    .nav-cta:hover { background: rgba(255,255,255,.85); transform: translateY(-1px); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: .3s;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero-slide.active { opacity: 1; }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(11,31,53,.78) 0%,
        rgba(11,79,138,.5) 60%,
        rgba(10,138,110,.25) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      padding-top: 72px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(232,162,32,.2);
      border: 1px solid rgba(232,162,32,.5);
      color: var(--gold);
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }
    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: .3; }
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 1.25rem;
      max-width: 700px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }

    .hero p {
      color: rgba(255,255,255,.85);
      font-size: 1.15rem;
      max-width: 520px;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .875rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: .95rem;
      text-decoration: none;
      transition: all .25s;
      cursor: pointer;
      border: none;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--dark);
    }
    .btn-primary:hover { background: #d4911a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,162,32,.4); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.5);
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }

    .hero-dots {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: .5rem;
      z-index: 2;
    }
    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
      border: none;
      cursor: pointer;
      transition: all .3s;
    }
    .hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--dark);
      padding: 2rem;
    }
    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .stat-item {
      text-align: center;
      padding: 1rem;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: .25rem;
    }
    .stat-label {
      color: rgba(255,255,255,.6);
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    /* ── SECTION COMMON ── */
    section { padding: 6rem 2rem; }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-tag {
      display: inline-block;
      color: var(--red);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: .75rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-sub {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 560px;
    }

    .section-header {
      margin-bottom: 3.5rem;
    }

    /* ── PROGRAMS ── */
    #programok { background: var(--light); }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .program-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all .3s;
      display: flex;
      flex-direction: column;
    }
    .program-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .program-img {
      height: 220px;
      object-fit: cover;
      width: 100%;
    }

    .program-body {
      padding: 1.75rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .program-icon {
      font-size: 1.6rem;
      margin-bottom: .75rem;
    }

    .program-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: .6rem;
    }

    .program-card p {
      color: var(--muted);
      font-size: .9rem;
      flex: 1;
      margin-bottom: 1.25rem;
    }

    .program-price {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: var(--light);
      color: var(--blue);
      font-weight: 700;
      font-size: .85rem;
      padding: .45rem .9rem;
      border-radius: 50px;
      border: 1px solid rgba(11,79,138,.15);
    }

    /* ── ABOUT / KAYAK SECTION ── */
    #kajak {
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-imgs {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      height: 460px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
    }
    .about-img-float {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: var(--radius);
      border: 4px solid var(--white);
      box-shadow: var(--shadow-lg);
    }

    .about-text .section-sub { margin-bottom: 2rem; }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .85rem;
      margin-bottom: 2rem;
    }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      color: var(--text);
    }
    .feature-list li::before {
      content: '✓';
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--teal);
      color: var(--white);
      font-size: .7rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: .15rem;
    }

    /* ── DRAGON BOAT ── */
    #sarkanyhajo {
      background: var(--dark);
      color: var(--white);
    }

    #sarkanyhajo .section-title { color: var(--white); }
    #sarkanyhajo .section-sub { color: rgba(255,255,255,.65); }

    .dragon-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .dragon-img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: 0 24px 64px rgba(0,0,0,.4);
    }

    .pricing-cards {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }

    .pricing-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background .2s;
    }
    .pricing-card:hover { background: rgba(255,255,255,.1); }

    .pricing-card-label {
      font-weight: 600;
      font-size: .95rem;
    }
    .pricing-card-sub {
      color: rgba(255,255,255,.5);
      font-size: .82rem;
    }
    .pricing-card-price {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--gold);
    }
    .pricing-card-price span {
      font-size: .75rem;
      font-weight: 400;
      color: rgba(255,255,255,.5);
    }

    /* ── SOCCER ── */
    #foci {
      background: var(--light);
    }

    .foci-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .foci-img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 2rem 0;
    }

    .feature-chip {
      display: flex;
      align-items: center;
      gap: .6rem;
      background: var(--white);
      border-radius: var(--radius);
      padding: .85rem 1rem;
      font-size: .88rem;
      font-weight: 600;
      color: var(--dark);
      box-shadow: var(--shadow);
    }
    .feature-chip .icon {
      font-size: 1.2rem;
    }

    /* ── COACHES ── */
    #edzok {
      background: var(--white);
    }

    .coaches-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    @media (max-width: 800px) {
      .coaches-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .coaches-grid { grid-template-columns: 1fr; }
    }

    .coach-card {
      text-align: center;
      background: var(--light);
      border-radius: 16px;
      padding: 2.75rem 2rem;
      transition: all .3s;
      border: 2px solid transparent;
    }
    .coach-card:hover {
      border-color: var(--blue-lt);
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
      background: var(--white);
    }

    .coach-photo {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--blue-lt);
      margin-bottom: 1.5rem;
      box-shadow: 0 6px 24px rgba(11,79,138,.2);
    }

    .coach-name {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: .3rem;
    }

    .coach-role {
      color: var(--teal);
      font-size: .82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 1rem;
    }

    .coach-phone {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      color: var(--muted);
      font-size: .85rem;
      text-decoration: none;
      transition: color .2s;
    }
    .coach-phone:hover { color: var(--blue); }

    /* ── TESTIMONIALS ── */
    #velemenyek {
      background: var(--blue);
      color: var(--white);
    }
    #velemenyek .section-title { color: var(--white); }
    #velemenyek .section-sub { color: rgba(255,255,255,.7); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .testimonial-card {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius);
      padding: 2rem;
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 1rem;
      left: 1.5rem;
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      color: rgba(255,255,255,.12);
      line-height: 1;
    }

    .testimonial-text {
      color: rgba(255,255,255,.9);
      font-size: .95rem;
      font-style: italic;
      margin-bottom: 1.25rem;
      position: relative;
    }

    .testimonial-author {
      font-weight: 700;
      color: var(--gold);
      font-size: .9rem;
    }

    /* ── TÁBOR ── */
    #tabor {
      background: var(--dark);
    }
    #tabor .section-inner > .tabor-turnusok,
    #tabor .section-inner > .tabor-info-grid {
      position: relative;
      z-index: 1;
    }

    .tabor-inner {
      position: relative;
      overflow: hidden;
      background-image: url('img/sup.jpg');
      background-size: cover;
      background-position: center 40%;
      border-radius: 20px;
      padding: 4rem;
      color: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .tabor-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(11,79,138,.88) 0%, rgba(10,138,110,.82) 100%);
      border-radius: 20px;
      z-index: 0;
    }
    .tabor-inner > * { position: relative; z-index: 1; }

    .tabor-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .tabor-inner p {
      color: rgba(255,255,255,.8);
      margin-bottom: 2rem;
    }

    .tabor-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .75rem;
    }
    .tabor-feat {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: .9rem;
      color: rgba(255,255,255,.9);
    }
    .tabor-feat::before {
      content: '★';
      color: var(--gold);
      font-size: .8rem;
    }

    /* ── TAX 1% ── */
    .tax-section {
      position: relative;
      overflow: hidden;
      background-image: url('img/102664114_773512906785773_9120915222641508352_n-1024x683.jpg');
      background-size: cover;
      background-position: center 40%;
    }
    .tax-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(90,35,0,.82) 0%, rgba(160,100,0,.75) 50%, rgba(90,35,0,.82) 100%);
      z-index: 0;
    }
    .tax-section::before {
      content: '1%';
      position: absolute;
      right: 2rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 14rem;
      font-weight: 900;
      color: rgba(255,255,255,.08);
      line-height: 1;
      pointer-events: none;
      font-family: 'Playfair Display', serif;
      z-index: 1;
    }
    .tax-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding: 3rem 2rem;
      position: relative;
      z-index: 2;
    }
    .tax-left {
      display: flex;
      align-items: center;
      gap: 1.75rem;
    }
    .tax-badge {
      background: rgba(255,255,255,.18);
      border: 2px solid rgba(255,255,255,.4);
      border-radius: 50%;
      width: 88px;
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.4rem;
      flex-shrink: 0;
      backdrop-filter: blur(4px);
    }
    .tax-text h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: .45rem;
      line-height: 1.25;
      text-shadow: 0 2px 8px rgba(0,0,0,.3);
    }
    .tax-text p {
      color: rgba(255,255,255,.85);
      font-size: 1rem;
    }
    .tax-id {
      display: inline-block;
      background: rgba(255,255,255,.2);
      border: 1px solid rgba(255,255,255,.45);
      border-radius: 6px;
      padding: .2rem .75rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: .1em;
      font-family: monospace;
      font-size: 1.1rem;
    }
    .tax-cta {
      flex-shrink: 0;
    }
    @media (max-width: 700px) {
      .tax-inner { flex-direction: column; text-align: center; }
      .tax-left { flex-direction: column; }
      .tax-section::before { display: none; }
    }

    /* ── SPONSORS ── */
    .sponsors-section {
      background: var(--white);
      padding: 3.5rem 2rem;
      border-top: 1px solid #eee;
    }
    .sponsors-inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .sponsors-label {
      color: var(--muted);
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 600;
      margin-bottom: 2rem;
    }
    .sponsors-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .sponsor-logo {
      height: 96px;
      width: auto;
      filter: grayscale(30%) opacity(.8);
      transition: all .3s;
    }
    .sponsor-logo:hover { filter: grayscale(0%) opacity(1); }

    /* ── CONTACT ── */
    #kapcsolat {
      background: var(--light);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--blue);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .contact-detail h4 {
      font-weight: 700;
      font-size: .9rem;
      color: var(--dark);
      margin-bottom: .2rem;
    }
    .contact-detail a,
    .contact-detail p {
      color: var(--muted);
      font-size: .9rem;
      text-decoration: none;
      transition: color .2s;
    }
    .contact-detail a:hover { color: var(--blue); }

    .contact-map {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      height: 380px;
    }
    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .bank-info {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
      margin-top: .5rem;
    }
    .bank-info h4 {
      font-weight: 700;
      color: var(--dark);
      margin-bottom: .75rem;
    }
    .bank-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .5rem 0;
      border-bottom: 1px solid #eee;
      font-size: .88rem;
    }
    .bank-row:last-child { border: none; }
    .bank-row label { color: var(--muted); }
    .bank-row value { font-weight: 600; color: var(--dark); font-family: monospace; }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    .social-link {
      display: flex;
      align-items: center;
      gap: .5rem;
      background: var(--dark);
      color: var(--white);
      padding: .6rem 1.2rem;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all .2s;
    }
    .social-link:hover { background: var(--blue); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,.5);
      padding: 2.5rem 2rem;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: .75rem;
    }
    .footer-logo img { height: 40px; }
    .footer-logo span { color: rgba(255,255,255,.7); font-size: .88rem; }
    footer a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    footer a:hover { color: var(--gold); }

    /* ── FOCI CALENDAR ── */
    .foci-calendar {
      margin-top: 3.5rem;
      border-top: 1px solid #e0e8f0;
      padding-top: 2.5rem;
    }
    .foci-calendar-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 1.25rem;
    }
    .foci-calendar-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid #d0dce8;
    }

    /* ── HOBBI CSOPORT BOX ── */
    .hobbi-box {
      background: var(--light);
      border-radius: 16px;
      padding: 2.5rem;
      margin-top: 3rem;
      border: 1px solid #d8e8f4;
    }
    .hobbi-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: .5rem;
    }
    .hobbi-header p { color: var(--muted); margin-bottom: 1.75rem; }
    .hobbi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .hobbi-detail {
      display: flex;
      gap: .75rem;
      align-items: flex-start;
      background: var(--white);
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      box-shadow: var(--shadow);
    }
    .hobbi-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
    .hobbi-detail strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: .2rem; }
    .hobbi-detail p { font-size: .85rem; color: var(--muted); margin: 0; }
    .hobbi-prices {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
    }
    .hobbi-price-card {
      background: var(--blue);
      border-radius: var(--radius);
      padding: 1rem 1.75rem;
      color: var(--white);
      text-align: center;
    }
    .hobbi-price-num { font-size: 1.5rem; font-weight: 800; }
    .hobbi-price-label { font-size: .8rem; opacity: .75; margin-top: .15rem; }

    /* ── DRAGON EDZÉSEK ── */
    .dragon-tag {
      display: inline-block;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      color: rgba(255,255,255,.85);
      font-size: .8rem;
      font-weight: 600;
      padding: .3rem .85rem;
      border-radius: 50px;
    }
    .dragon-edzesek {
      border-top: 1px solid rgba(255,255,255,.12);
      padding-top: 3rem;
    }
    .dragon-edzesek-header { margin-bottom: 2rem; }
    .dragon-edzesek-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .dragon-info-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      padding: 1.5rem;
      transition: background .2s;
    }
    .dragon-info-card:hover { background: rgba(255,255,255,.11); }
    .dragon-info-icon { font-size: 1.6rem; margin-bottom: .6rem; }
    .dragon-info-card h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
    .dragon-info-card p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0; }
    .dragon-contact-bar {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(232,162,32,.3);
      border-radius: var(--radius);
      padding: 1.25rem 1.75rem;
    }
    .dragon-contact-bar > div { font-size: .95rem; }

    /* ── TÁBOR TURNUSOK ── */
    .tabor-turnusok {
      margin-top: 3rem;
      background: rgba(255,255,255,.08);
      border-radius: 16px;
      padding: 2rem 2.5rem;
      border: 1px solid rgba(255,255,255,.15);
    }
    .tabor-turnusok-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--white);
      margin-bottom: 1.25rem;
    }
    .tabor-turnusok-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
    }
    .turnus-card {
      background: rgba(255,255,255,.1);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      border-left: 3px solid var(--gold);
    }
    .turnus-num { font-size: .75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .3rem; }
    .turnus-dates { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
    .turnus-deadline { font-size: .8rem; color: rgba(255,255,255,.6); }
    .turnus-deadline strong { color: rgba(255,255,255,.9); }

    /* ── TÁBOR INFO GRID ── */
    .tabor-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
    }
    .tabor-info-card {
      background: rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,.12);
    }
    .tabor-info-icon { font-size: 1.6rem; margin-bottom: .6rem; }
    .tabor-info-card h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
    .tabor-info-card p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0; }
    .tabor-info-card small { font-size: .78rem; opacity: .8; }

    /* ── CONTACT FORM ── */
    .contact-form {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow-lg);
    }
    .contact-form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: .4rem;
    }
    .form-group {
      margin-bottom: 1.15rem;
    }
    .form-group label {
      display: block;
      font-size: .85rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: .4rem;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid #d0dce8;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: .9rem;
      color: var(--text);
      background: var(--light);
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      resize: vertical;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--blue-lt);
      box-shadow: 0 0 0 3px rgba(26,109,181,.12);
      background: var(--white);
    }
    .contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 320px; }
    .contact-map iframe { width: 100%; height: 100%; border: none; }

    /* ── SCROLL REVEAL ── */
    .reveal-ready {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal-ready.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-grid,
      .dragon-grid,
      .foci-inner,
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-img-float { display: none; }
      .tabor-inner { grid-template-columns: 1fr; padding: 2.5rem; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 4rem 1.5rem; }
    }
    @media (max-width: 600px) {
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: 1fr; }
      .tabor-features { grid-template-columns: 1fr; }
      .pricing-card { flex-direction: column; gap: .5rem; text-align: center; }
      .contact-map { height: 280px; }
    }
.tabor-feat { color: var(--text); }
  .tabor-turnusok-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:1rem; }
  .turnus-card { background: var(--white); border:1px solid #e0e8f0; border-top:3px solid var(--gold); box-shadow: var(--shadow); text-align:left; padding:1.25rem 1.5rem; }
  .turnus-num { color: var(--gold); font-weight:800; font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:.35rem; }
  .turnus-dates { color: var(--dark); }
  .turnus-deadline { color: var(--muted); }
  .turnus-deadline strong { color: var(--text); }
  .tabor-info-card { background: var(--white); border:1px solid #e0e8f0; box-shadow: var(--shadow); }
  .tabor-info-card h4 { color: var(--dark); }
  .tabor-info-card p { color: var(--text); }
  a.tabor-info-card { transition: transform .2s, box-shadow .2s; }
  a.tabor-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  /* Mi vár a táborban – kép-kártyák */
  .camp-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr)); gap:1.25rem; max-width:920px; margin:0 auto; }
  .camp-card { background:var(--white); border:1px solid #e0e8f0; border-radius:16px; overflow:hidden; text-align:center; box-shadow:var(--shadow); transition:transform .2s, box-shadow .2s; }
  .camp-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
  .camp-card img { width:100%; height:150px; object-fit:cover; display:block; }
  .camp-card h4 { color:var(--dark); font-size:1.02rem; font-weight:700; margin:0; padding:.9rem 1rem; }


/* Reszponzív nav — egységesítve a főoldallal (a base .hamburger szabály után kell állnia) */
@media (max-width: 1320px) {
  .nav-logo span { display: none; }
  .nav-links { gap: .8rem; }
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
