/* ===================== RESET & VARIABLES ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --okker: #C8871F;
  --okker-light: #F5E6C8;
  --okker-pale: #FDF7EC;
  --terra: #B85C38;
  --terra-light: #F0D5C8;
  --green: #5A7A4A;
  --green-light: #D6E8CE;
  --cream: #FAF7F2;
  --brown: #3D2B1F;
  --brown-mid: #7A5C45;
  --text: #2C1F14;
  --text-muted: #7A6553;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 8px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ===================== NAVIGATION ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,135,31,0.15);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--okker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brown);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--okker);
  background: var(--okker-pale);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-donate {
  background: var(--terra);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-donate:hover {
  background: var(--brown);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--brown);
  cursor: pointer;
  padding: 0 10px;
  line-height: 1;
}

.btn-access {
  background: transparent;
  border: 1.5px solid var(--okker);
  color: var(--okker);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.btn-access:hover { background: var(--okker-pale); }

/* ===================== MAIN LAYOUT ===================== */
main {
  padding-top: 72px;
  min-height: 100vh;
}

/* ===================== HERO (főoldal) ===================== */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 5rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--okker-light);
  color: var(--okker);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--okker);
  border-radius: 50%;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

h1 em { font-style: italic; color: var(--terra); }

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  background: var(--okker);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--brown); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover { background: var(--terra-light); }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250,247,242,0.88) 0%,
    rgba(250,247,242,0.55) 45%,
    rgba(61,43,31,0.08) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-card-stack { position: relative; width: 340px; z-index: 2; }

.float-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(61,43,31,0.12);
}

.float-card.main { transform: rotate(-2deg); }
.float-card.alt { margin-top: -20px; margin-left: 40px; transform: rotate(2deg); background: var(--okker-pale); }
.float-card.green-card { margin-top: 12px; transform: rotate(-1deg); background: var(--green-light); }

.float-card-icon { font-size: 1.75rem; margin-bottom: 8px; }
.float-card h3 { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.float-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

.quote-bubble {
  background: var(--green-light);
  border-radius: 18px 18px 18px 4px;
  padding: 14px 18px;
}

.quote-bubble p { font-family: 'Fraunces', serif; font-style: italic; font-size: 0.875rem; color: var(--green); line-height: 1.5; }
.quote-bubble small { font-size: 0.6875rem; color: var(--brown-mid); display: block; margin-top: 6px; }

.hero-stats { display: flex; gap: 16px; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { text-align: center; padding: 16px 20px; background: white; border-radius: 16px; border: 1.5px solid var(--okker-light); }
.stat-num { font-family: 'Fraunces', serif; font-size: 1.75rem; font-weight: 700; color: var(--okker); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ===================== QUOTE SECTION (főoldal) ===================== */
.quote-section { background: var(--terra); padding: 4rem 2rem; text-align: center; }
.quote-section-text {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: white;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}
.quote-section-author { color: rgba(255,255,255,0.7); margin-top: 14px; font-size: 0.875rem; letter-spacing: 0.1em; }

/* ===================== QUICK SECTION (főoldal) ===================== */
.quick-section { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
.quick-section-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 2rem;
  text-align: center;
}
.quick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }

.quick-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: block;
}
.quick-card:hover { border-color: var(--okker); box-shadow: 0 6px 24px rgba(200,135,31,0.12); }
.quick-card-icon { font-size: 2.25rem; margin-bottom: 12px; }
.quick-card h3 { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--brown); margin-bottom: 6px; }
.quick-card p { font-size: 0.8125rem; color: var(--text-muted); }

.quick-card-donate {
  background: var(--terra);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.quick-card-donate:hover { background: var(--brown); }
.quick-card-donate .quick-card-icon { font-size: 2.25rem; margin-bottom: 12px; }
.quick-card-donate h3 { font-family: 'Fraunces', serif; font-size: 1rem; color: white; margin-bottom: 6px; }
.quick-card-donate p { font-size: 0.8125rem; color: rgba(255,255,255,0.8); }

/* ===================== GYARMATHY SECTION (főoldal) ===================== */
.gyarmathy-section { background: var(--okker-pale); padding: 4rem 2rem; }
.gyarmathy-inner { max-width: 800px; margin: 0 auto; }
.gyarmathy-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.gyarmathy-author { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

/* ===================== PAGE HERO (belső oldalak) ===================== */
.page-hero { background: var(--okker-pale); padding: 5rem 4rem 3rem; text-align: center; }
.page-hero h2 { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 600; color: var(--brown); margin-bottom: 1rem; }
.page-hero p { font-size: 1.0625rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-block { padding: 4rem 0; }

/* ===================== SZEKCIÓ SEGÉDOSZTÁLYOK ===================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 12px;
}
.section-heading { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; color: var(--brown); }
.section-offset { margin-top: 3.5rem; }
.intro-text { font-size: 1.0625rem; line-height: 1.8; color: var(--text-muted); max-width: 750px; margin: 0 auto 2rem; }
.page-text { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin: 2rem 0; }
.subsection-heading { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; color: var(--brown); margin: 3rem 0 1.5rem; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===================== CIKKEK ===================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(200,135,31,0.1);
}

.article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(61,43,31,0.12); }

.article-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.article-img.okker { background: var(--okker-light); }
.article-img.terra { background: var(--terra-light); }
.article-img.green { background: var(--green-light); }

.article-body { padding: 20px; }

.article-tag {
  display: inline-block;
  background: var(--okker-light);
  color: var(--okker);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.article-tag.terra { background: var(--terra-light); color: var(--terra); }
.article-tag.green { background: var(--green-light); color: var(--green); }

.article-card h3 { font-family: 'Fraunces', serif; font-size: 1.0625rem; font-weight: 600; color: var(--brown); margin-bottom: 8px; line-height: 1.4; }
.article-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }
.article-meta { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.75rem; color: var(--text-muted); }
.article-meta span::before { content: '•'; margin-right: 8px; }
.article-meta span:first-child::before { content: none; }

/* ===================== KERESÉS ===================== */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid var(--okker-light);
  border-radius: 30px;
  padding: 8px 16px 8px 20px;
  max-width: 500px;
  margin: 0 auto 2rem;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--okker); }
.search-bar input { border: none; outline: none; font-size: 0.9375rem; font-family: 'DM Sans', sans-serif; color: var(--text); flex: 1; background: transparent; }
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button { background: var(--okker); color: white; border: none; padding: 8px 18px; border-radius: 20px; cursor: pointer; font-size: 0.8125rem; font-family: 'DM Sans', sans-serif; }

/* ===================== TANÁCSOK ===================== */
.practices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 2rem; }
.practice-card { background: white; border-radius: 20px; padding: 28px; border-left: 4px solid var(--okker); transition: transform 0.2s; }
.practice-card:hover { transform: translateY(-3px); }
.practice-card.terra { border-left-color: var(--terra); }
.practice-card.green { border-left-color: var(--green); }
.practice-icon { font-size: 2.25rem; margin-bottom: 14px; }
.practice-card h3 { font-family: 'Fraunces', serif; font-size: 1.125rem; font-weight: 600; color: var(--brown); margin-bottom: 8px; }
.practice-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ===================== FOGLALKOZÁSOK ===================== */
.session-list { display: flex; flex-direction: column; gap: 16px; margin-top: 2rem; }
.session-card { background: white; border-radius: 16px; padding: 24px; display: flex; gap: 20px; align-items: flex-start; border: 1px solid rgba(200,135,31,0.12); transition: transform 0.2s; }
.session-card:hover { transform: translateX(4px); }
.session-badge { min-width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; }
.session-badge.okker { background: var(--okker-light); }
.session-badge.terra { background: var(--terra-light); }
.session-badge.green { background: var(--green-light); }
.session-info h3 { font-family: 'Fraunces', serif; font-size: 1.0625rem; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.session-info p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.session-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.session-pill { background: var(--okker-pale); color: var(--okker); font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; font-weight: 500; }
.session-pill.terra { background: var(--terra-light); color: var(--terra); }
.session-pill.green { background: var(--green-light); color: var(--green); }

/* ===================== GALÉRIA ===================== */
.gallery-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.gallery-tab { padding: 8px 20px; border-radius: 20px; border: 1.5px solid var(--okker-light); background: transparent; color: var(--text-muted); font-size: 0.875rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.gallery-tab.active, .gallery-tab:hover { background: var(--okker); color: white; border-color: var(--okker); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 1rem; }
.gallery-item { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; cursor: pointer; transition: transform 0.2s; position: relative; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item.c1 { background: var(--okker-light); }
.gallery-item.c2 { background: var(--terra-light); }
.gallery-item.c3 { background: var(--green-light); }
.gallery-item.c4 { background: #E8D5F0; }
.gallery-item.c5 { background: #D5E8F0; }
.gallery-play { position: absolute; width: 44px; height: 44px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.gallery-note { text-align: center; font-size: 0.8125rem; color: var(--text-muted); margin-top: 16px; font-style: italic; }
.video-items { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 20px; margin-top: 1.5rem; }
.video-card { flex: 1 1 300px; max-width: 350px; background: white; border-radius: 16px; overflow: hidden; border: 1px solid rgba(200,135,31,0.1); }
.video-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; cursor: pointer; }
.video-thumb.v1 { background: var(--okker-light); }
.video-thumb.v2 { background: var(--terra-light); }
.video-thumb.v3 { background: var(--green-light); }
.video-info { padding: 16px; }
.video-info h4 { font-family: 'Fraunces', serif; font-size: 0.9375rem; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.video-info p { font-size: 0.8125rem; color: var(--text-muted); }

/* ===================== LIGHTBOX ===================== */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(10,10,10,0.9); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.lightbox-overlay.show { display: flex; opacity: 1; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); user-select: none; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 2.75rem; cursor: pointer; z-index: 2010; opacity: 0.7; transition: opacity 0.2s; line-height: 1; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); border: none; color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; z-index: 2010; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(0,0,0,0.8); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.875rem; font-family: 'DM Sans', sans-serif; letter-spacing: 0.1em; }

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; width: 40px; height: 40px; font-size: 1.125rem; }
  .lightbox-next { right: 10px; width: 40px; height: 40px; font-size: 1.125rem; }
  .lightbox-close { top: 10px; right: 10px; font-size: 2.25rem; }
}

/* ===================== PROGRAMOK ===================== */
.programs-filters { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-btn { padding: 7px 18px; border-radius: 20px; border: 1.5px solid var(--okker-light); background: white; color: var(--text-muted); font-size: 0.8125rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--okker-light); color: var(--okker); border-color: var(--okker); }
.programs-list { display: flex; flex-direction: column; gap: 16px; }
.program-card { background: white; border-radius: 18px; padding: 22px; display: flex; gap: 16px; border: 1px solid rgba(200,135,31,0.1); transition: box-shadow 0.2s; }
.program-card:hover { box-shadow: 0 6px 24px rgba(61,43,31,0.08); }
.program-date { min-width: 64px; text-align: center; padding: 10px 8px; border-radius: 14px; background: var(--okker-pale); }
.program-date .day { font-family: 'Fraunces', serif; font-size: 1.625rem; font-weight: 700; color: var(--okker); line-height: 1; }
.program-date .month { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 2px; }
.program-body { flex: 1; }
.program-body h3 { font-family: 'Fraunces', serif; font-size: 1.0625rem; font-weight: 600; color: var(--brown); margin-bottom: 5px; }
.program-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 10px; }
.program-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ptag { padding: 4px 12px; border-radius: 16px; font-size: 0.75rem; font-weight: 500; }
.ptag.workshop { background: var(--okker-light); color: var(--okker); }
.ptag.eload { background: var(--terra-light); color: var(--terra); }
.ptag.gyerek { background: var(--green-light); color: var(--green); }
.program-btn { display: inline-block; text-decoration: none; margin-top: 12px; padding: 8px 18px; background: var(--okker); color: white; border: none; border-radius: 20px; font-size: 0.8125rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
.program-btn:hover { background: var(--brown); }

/* ===================== RÓLUNK ===================== */
.big-quote { font-family: 'Fraunces', serif; font-size: 1.2rem; font-style: italic; color: var(--brown); line-height: 1.7; margin: 2rem 0; padding: 2rem; border-left: 4px solid var(--okker); background: var(--okker-pale); border-radius: 0 16px 16px 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 2rem; }
.team-card { background: white; border-radius: 20px; padding: 24px; text-align: center; border: 1px solid rgba(200,135,31,0.12); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.team-avatar.a1 { background: var(--okker-light); }
.team-avatar.a2 { background: var(--terra-light); }
.team-avatar.a3 { background: var(--green-light); }
.team-card h3 { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.team-card p { font-size: 0.8125rem; color: var(--text-muted); }

/* ===================== TÁMOGATÁS ===================== */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2rem; }
.support-card { background: white; border-radius: 20px; padding: 32px; border: 1px solid rgba(200,135,31,0.12); }
.support-card.highlight { background: var(--okker); }
.support-card.highlight h3 { color: white; }
.support-card.highlight p { color: rgba(255,255,255,0.85); }
.support-card h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; color: var(--brown); margin-bottom: 12px; }
.support-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.bank-num { font-family: monospace; font-size: 1.125rem; font-weight: 500; background: var(--okker-pale); padding: 14px 20px; border-radius: 12px; color: var(--brown); letter-spacing: 0.05em; margin: 14px 0; display: block; }
.support-card.highlight .bank-num { background: rgba(255,255,255,0.2); color: white; }
.download-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: var(--green); color: white; border: none; border-radius: 20px; font-size: 0.875rem; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: background 0.2s; }
.download-btn:hover { background: #3d5530; }
.percent-box { border: 2.5px dashed rgba(255,255,255,0.5); border-radius: 16px; padding: 20px; margin-top: 16px; text-align: center; }
.percent-big { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700; color: white; line-height: 1; }
.percent-label { font-size: 0.875rem; color: rgba(255,255,255,0.85); margin-top: 4px; }
.support-note { font-size: 0.8125rem; color: var(--text-muted); }
.support-note-mt { margin-top: 12px; font-size: 0.875rem; color: var(--text-muted); }
.thanks-box { background: var(--okker-pale); border-radius: 20px; padding: 32px; margin-top: 24px; text-align: center; }
.thanks-icon { font-size: 2.25rem; margin-bottom: 14px; }
.thanks-title { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--brown); margin-bottom: 10px; }
.thanks-text { font-size: 0.9375rem; color: var(--text-muted); max-width: 550px; margin: 0 auto; }

/* ===================== KAPCSOLAT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 2rem; }
.contact-info h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--brown); margin-bottom: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.contact-icon.okker { background: var(--okker-light); }
.contact-icon.terra { background: var(--terra-light); }
.contact-icon.green { background: var(--green-light); }
.contact-item h4 { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-item p { font-size: 0.9375rem; color: var(--brown); }
.social-section { margin-top: 2rem; }
.social-label { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.social-btn { padding: 10px 20px; border-radius: 20px; border: 1.5px solid var(--okker-light); background: white; color: var(--brown); font-size: 0.875rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.social-btn:hover { background: var(--okker-pale); border-color: var(--okker); }
.contact-form { background: white; border-radius: 20px; padding: 32px; border: 1px solid rgba(200,135,31,0.12); }
.contact-form h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--brown); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--okker-light); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; color: var(--text); outline: none; transition: border-color 0.2s; background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--okker); }
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-submit { width: 100%; padding: 14px; background: var(--terra); color: white; border: none; border-radius: 20px; font-size: 0.9375rem; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 8px; transition: background 0.2s; }
.btn-submit:hover { background: var(--brown); }
.map-placeholder { background: var(--green-light); border-radius: 16px; height: 200px; display: flex; align-items: center; justify-content: center; margin-top: 24px; font-size: 3rem; color: var(--green); }

/* ===================== AKADÁLYMENTESÍTÉSI PANEL ===================== */
.access-panel { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
.access-toggle { width: 48px; height: 48px; background: var(--green); border: none; border-radius: 50%; color: white; font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(90,122,74,0.35); transition: transform 0.2s; }
.access-toggle:hover { transform: scale(1.1); }
.access-options { display: none; position: absolute; bottom: 60px; right: 0; background: white; border-radius: 16px; padding: 16px; box-shadow: 0 8px 32px rgba(61,43,31,0.15); min-width: 180px; }
.access-options.show { display: block; }
.access-opt { width: 100%; padding: 10px 14px; border: none; background: transparent; text-align: left; font-size: 0.875rem; color: var(--text); cursor: pointer; border-radius: 8px; font-family: 'DM Sans', sans-serif; transition: background 0.15s; }
.access-opt:hover { background: var(--okker-pale); }

/* ===================== FOOTER ===================== */
footer { background: var(--brown); color: rgba(255,255,255,0.8); padding: 3rem 4rem 2rem; margin-top: 4rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 600; color: white; margin-bottom: 10px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.65); max-width: 280px; }
footer h4 { font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--okker); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-adoszam { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ===================== HÍRLEVÉL ===================== */
.newsletter-section { background: var(--okker-pale); padding: 4rem 2rem; text-align: center; }
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-text h2 { font-family: 'Fraunces', serif; font-size: 1.8rem; color: var(--brown); margin-bottom: 12px; }
.newsletter-text p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 12px 16px; border: 1.5px solid var(--okker-light); border-radius: 20px; font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; outline: none; }
.newsletter-form input:focus { border-color: var(--okker); }
.newsletter-form button { padding: 12px 24px; white-space: nowrap; border-radius: 20px; }
.form-msg { width: 100%; margin-top: 10px; font-size: 0.875rem; font-weight: 500; }
.form-msg.success { color: var(--green); }
.form-msg.error { color: var(--terra); }

/* ===================== ANIMÁCIÓK ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left > * { animation: fadeUp 0.6s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }

/* ===================== RESZPONZÍV ===================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 3rem 2rem; }
  .support-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  
  /* Frontend Hamburger Navigation */
  .hamburger { display: block; }
  .btn-donate { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 20px; gap: 8px; border-top: 1px solid var(--border); }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1rem; padding: 12px 16px; border-radius: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { padding: 3rem 1.5rem 2rem; }
  .container { padding: 0 1rem; }
  .hero-left h1 { font-size: 2.2rem; }
  .hero-desc { font-size: 0.9375rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns a { width: 100%; text-align: center; }
  .quick-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .video-items { grid-template-columns: 1fr; }
  .programs-list .program-card { flex-direction: column; gap: 12px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .newsletter-section { padding: 3rem 1.5rem; }
  .big-quote { font-size: 1.1rem; padding: 1.5rem; }
  .stat-num { font-size: 2rem; }
  .gyarmathy-inner { padding: 2.5rem 1.5rem; }
}

.material-symbols-rounded { vertical-align: middle; }


/* ===================== MAGAS KONTRASZT ===================== */
body.high-contrast {
  --okker: #000000;
  --okker-light: #E0E0E0;
  --okker-pale: #FFFFFF;
  --terra: #000000;
  --terra-light: #E0E0E0;
  --green: #000000;
  --green-light: #E0E0E0;
  --cream: #FFFFFF;
  --brown: #000000;
  --brown-mid: #000000;
  --text: #000000;
  --text-muted: #111111;
  background-color: #FFFFFF !important;
  color: #000000 !important;
}
body.high-contrast * {
  box-shadow: none !important;
}
body.high-contrast nav, body.high-contrast .article-kivonat, body.high-contrast blockquote, body.high-contrast .practice-card, body.high-contrast .video-card {
  border: 2px solid #000;
}
body.high-contrast footer {
  background: #000;
  color: #fff !important;
}
body.high-contrast footer h3, body.high-contrast footer p, body.high-contrast footer a, body.high-contrast footer div, body.high-contrast footer h4 {
  color: #fff !important;
}
body.high-contrast .logo-text, body.high-contrast .logo-text span {
  color: #000 !important;
}

