/* ===== ZSVE - Zalaegerszegi Sport és Vadászíjász Egyesület =====
   Arculat: Olíva · Ciánkék · Csont
   ============================================================== */

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

:root {
  --zold:    #4A3923;   /* Olíva – primer */
  --zold2:   #5C4A30;   /* Olíva medium */
  --barna:   #3A2C1A;   /* Olíva sötét */
  --arany:   #00C1E1;   /* Ciánkék – akcent */
  --arany2:  #33CDED;   /* Ciánkék világos */
  --cian-h:  #007A8E;   /* Cián árnyék – hover */
  --krem:    #EFECE1;   /* Csont – felület */
  --feher:   #FFFFFF;
  --szurke:  #888880;   /* Közép árnyalat */
  --ezust:   #C8C8BE;   /* Ezüst – vonal */
  --sotet:   #15170D;   /* Tinta – szöveg */
  --font-dm: 'Saira Stencil One', sans-serif;
  --font-in: 'Inter Tight', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow:  0 4px 24px rgba(0,0,0,0.14);
  --radius:  12px;
  --trans:   0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-in);
  color: var(--sotet);
  background: var(--krem);
  line-height: 1.6;
}

/* === Betűtípusok === */
@import url('https://fonts.googleapis.com/css2?family=Saira+Stencil+One&family=Inter+Tight:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* === Segéd === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--feher); }

.section-title {
  font-family: var(--font-dm);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--zold);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--szurke);
  max-width: 600px;
  margin-bottom: 56px;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto 56px; }

.tag {
  display: inline-block;
  background: var(--arany);
  color: var(--zold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* === Gombok === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-in);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--arany);
  color: var(--zold);
  border-color: var(--arany);
}
.btn-primary:hover { background: var(--arany2); border-color: var(--arany2); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--feher);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--feher); }

.btn-outline-dark {
  background: transparent;
  color: var(--zold);
  border-color: var(--zold);
}
.btn-outline-dark:hover { background: var(--zold); color: var(--feher); }

/* === Navigáció === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(74, 57, 35, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 56px;
  height: 40px;
  background: rgba(239, 236, 225, 0.09);
  border-radius: 8px;
  border: 1px solid rgba(200, 200, 190, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 3px;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.55)) brightness(1.08);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-short {
  font-family: var(--font-dm);
  font-size: 1.4rem;
  color: var(--feher);
  letter-spacing: 0.05em;
}

.nav-logo-long {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--trans);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--arany);
  background: rgba(201,168,76,0.1);
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--arany) !important;
  color: var(--zold) !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--arany2) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--feher);
  border-radius: 2px;
  transition: var(--trans);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(160deg, rgba(20,12,5,0.82) 0%, rgba(58,44,26,0.60) 50%, rgba(20,12,5,0.80) 100%),
    url('../img/IMG_8775.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(92,74,48,0.3) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  margin-left: 8%;
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--arany);
}

.hero-eyebrow-text {
  font-family: var(--font-mono);
  color: var(--arany);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero h1 {
  font-family: var(--font-dm);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--feher);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 560px;
}

.hero h1 em {
  font-style: italic;
  color: var(--arany);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: var(--font-dm);
  font-size: 2.4rem;
  color: var(--arany);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll {
  font-family: var(--font-mono);
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: scrollBounce 2s infinite;
}

.hero-scroll svg { opacity: 0.5; }

.hero-bow {
  position: absolute;
  right: 4%;
  bottom: 0;
  height: 80vh;
  max-height: 720px;
  opacity: 0.80;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(201,168,76,0.15));
}

@media (max-width: 1024px) {
  .hero-bow { height: 52vh; opacity: 0.55; right: 0; }
}
@media (max-width: 640px) {
  .hero-bow { display: none; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === Rólunk szekció (homepage) === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background-image:
    linear-gradient(to bottom, rgba(20,12,5,0.25) 0%, rgba(20,12,5,0.55) 100%),
    url('../img/IMG_2379.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.40);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.3);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--arany);
  color: var(--zold);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  border: 4px solid var(--feher);
}

.about-badge-num {
  font-family: var(--font-dm);
  font-size: 2.2rem;
  line-height: 1;
}

.about-badge-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 80px;
  line-height: 1.3;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.about-feature {
  background: var(--krem);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--arany);
}

.about-feature-icon { font-size: 1.5rem; margin-bottom: 8px; }

.about-feature h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zold);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--szurke);
  line-height: 1.5;
}

/* === Hírek === */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--feher);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--trans);
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.news-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--zold2) 0%, var(--barna) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  overflow: hidden;
  position: relative;
}

.news-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,57,35,0.6), transparent);
}

.news-card-body { padding: 24px; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--szurke);
  font-weight: 400;
}

.news-card h3 {
  font-family: var(--font-dm);
  font-size: 1.2rem;
  color: var(--sotet);
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-card p {
  font-size: 0.88rem;
  color: var(--szurke);
  line-height: 1.6;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zold2);
  transition: var(--trans);
}

.news-card-link:hover { gap: 10px; color: var(--arany); }

/* === Tagság === */
.membership-section {
  background: linear-gradient(135deg, var(--zold) 0%, var(--zold2) 100%);
  position: relative;
  overflow: hidden;
}

.membership-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 100px solid rgba(255,255,255,0.04);
}

.membership-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(201,168,76,0.08);
}

.membership-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.membership-text .section-title { color: var(--feher); }
.membership-text .section-subtitle { color: rgba(255,255,255,0.7); }

.membership-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.membership-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--arany);
  color: var(--zold);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--feher);
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.membership-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.membership-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--trans);
}

.membership-card:hover { background: rgba(255,255,255,0.12); border-color: var(--arany); }

.membership-card.featured {
  background: var(--arany);
  border-color: var(--arany);
  grid-column: 1 / -1;
}

.membership-card h4 {
  font-family: var(--font-dm);
  font-size: 1.1rem;
  color: var(--feher);
  margin-bottom: 6px;
}

.membership-card.featured h4 { color: var(--zold); }

.membership-card .price {
  font-family: var(--font-dm);
  font-size: 2rem;
  color: var(--arany);
  line-height: 1;
  margin: 12px 0 8px;
}

.membership-card.featured .price { color: var(--zold); }

.membership-card .price span { font-size: 0.9rem; font-family: var(--font-in); }

.membership-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.membership-card.featured p { color: rgba(74,57,35,0.75); }

/* === Galéria === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--zold) 0%, var(--barna) 100%);
  cursor: pointer;
  position: relative;
  transition: var(--trans);
}

.gallery-item:hover { transform: scale(1.02); z-index: 1; }

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--trans);
}

.gallery-placeholder svg { opacity: 0.3; }

.gallery-item:hover .gallery-placeholder {
  color: rgba(255,255,255,0.5);
}

.gallery-item:hover .gallery-placeholder svg { opacity: 0.5; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,57,35,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(74,57,35,0.4);
}

/* === Kapcsolat / Footer === */
.contact-section {
  background: var(--sotet);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}

.contact-info .section-title { color: var(--feher); }
.contact-info .section-subtitle { color: rgba(255,255,255,0.55); }

.contact-items { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--arany);
}

.contact-item-text h4 {
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-item-text p, .contact-item-text a {
  color: var(--feher);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--trans);
}

.contact-item-text a:hover { color: var(--arany); }

/* Kapcsolatfelvételi form */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h3 {
  font-family: var(--font-dm);
  font-size: 1.4rem;
  color: var(--feher);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  font-family: var(--font-mono);
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--feher);
  font-family: var(--font-in);
  font-size: 0.9rem;
  transition: var(--trans);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--arany);
  background: rgba(255,255,255,0.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group select option { background: var(--sotet); }

/* Footer bar */
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bar p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 1px 5px rgba(0,0,0,0.5));
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--trans);
}

.social-link:hover { background: var(--arany); color: var(--zold); }

/* === Belső oldal fejléc === */
.page-header {
  background-image:
    linear-gradient(160deg, rgba(27,58,45,0.90) 0%, rgba(46,94,71,0.80) 100%),
    url('../img/IMG_2382.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--krem);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header-alt::after { background: var(--feher); }

.page-header h1 {
  font-family: var(--font-dm);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--feher);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
}

.breadcrumb {
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--trans);
}

.breadcrumb a:hover { color: var(--arany); }

.breadcrumb span { color: var(--arany); font-weight: 600; }

/* === Rólunk oldal === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--feher);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--trans);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zold) 0%, var(--zold2) 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-dm);
  font-size: 1.8rem;
  color: var(--arany);
  border: 3px solid var(--arany);
}

.team-card h3 {
  font-family: var(--font-dm);
  font-size: 1.15rem;
  color: var(--sotet);
  margin-bottom: 4px;
}

.team-card .role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--arany);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.discipline-card {
  background: var(--feher);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--trans);
  border-top: 4px solid var(--arany);
}

.discipline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.discipline-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.discipline-card h3 {
  font-family: var(--font-dm);
  font-size: 1.3rem;
  color: var(--zold);
  margin-bottom: 10px;
}

.discipline-card p { color: var(--szurke); font-size: 0.9rem; line-height: 1.7; }

/* === Hírek / Események oldal === */
.events-list { display: flex; flex-direction: column; gap: 20px; }

.event-item {
  background: var(--feher);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--trans);
  text-decoration: none;
  color: inherit;
}

.event-item:hover { transform: translateX(8px); box-shadow: var(--shadow); }

.event-date-box {
  background: var(--zold);
  color: var(--feher);
  border-radius: 10px;
  padding: 12px 20px;
  text-align: center;
  flex-shrink: 0;
  min-width: 80px;
}

.event-date-day {
  font-family: var(--font-dm);
  font-size: 2rem;
  line-height: 1;
  color: var(--arany);
}

.event-date-month {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.event-info h3 {
  font-family: var(--font-dm);
  font-size: 1.15rem;
  color: var(--sotet);
  margin-bottom: 6px;
}

.event-info p { color: var(--szurke); font-size: 0.88rem; }

.event-meta {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.event-meta span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--szurke);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* === Tagság oldal === */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--feher);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--sotet);
  transition: var(--trans);
  user-select: none;
}

.faq-question:hover { color: var(--zold); }

.faq-question.open { color: var(--zold); }

.faq-icon {
  font-size: 1.2rem;
  transition: var(--trans);
  flex-shrink: 0;
  color: var(--arany);
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--szurke);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid #f0ece4;
}

/* === Galéria oldal === */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-full-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--zold) 0%, var(--barna) 100%);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: var(--trans);
}

.gallery-full-item:hover { transform: scale(1.03); z-index: 1; box-shadow: var(--shadow); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--feher);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.lightbox-close:hover { background: var(--arany); color: var(--zold); }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  background: var(--zold);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  width: min(900px, 90vw);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
}

/* === Értesítés === */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--zold);
  color: var(--feher);
  padding: 14px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--trans);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  border-left: 4px solid var(--arany);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* === Scroll reveal === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobilon nincs fixed attachment (teljesítmény) */
@media (max-width: 768px) {
  .hero-bg, .page-header {
    background-attachment: scroll;
  }
}

/* === Reszponzív === */
@media (max-width: 1024px) {
  .about-grid, .membership-inner, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }

  .about-badge { bottom: 16px; right: 16px; width: 110px; height: 110px; }
  .about-badge-num { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(74,57,35,0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .nav-links.mobile-open a {
    font-size: 1.3rem;
    padding: 12px 24px;
  }

  .mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    color: var(--feher);
    font-size: 1.8rem;
    cursor: pointer;
  }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { gap: 28px; }

  .news-grid { grid-template-columns: 1fr; }
  .membership-cards { grid-template-columns: 1fr; }
  .disciplines-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: 1; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .discipline-card { flex-direction: column; }
}
