/* ============================================================
   MÁRIAÚJFALUÉRT EGYESÜLET — Ghost Téma
   Természetes, organikus stílus | Sötétzöld + Világoszöld
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── Változók ── */
:root {
  --zold-sotet:    #1a5c1a;
  --zold-kozep:    #2d7a2d;
  --zold-vilag:    #6ab04c;
  --zold-halvany:  #d4edda;
  --zold-pasztell: #f0f7f0;
  --foold:         #fdfdf8;
  --szoveg:        #2c3e2c;
  --szoveg-halvany:#5a6e5a;
  --feher:         #ffffff;
  --arany:         #c8a84b;
  --font-cim:      'Cormorant Garamond', Georgia, serif;
  --font-szoveg:   'Jost', sans-serif;
  --radius:        12px;
  --radius-nagy:   24px;
  --arnyek:        0 4px 24px rgba(26,92,26,0.10);
  --arnyek-nagy:   0 12px 48px rgba(26,92,26,0.16);
  --atmenet:       0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--foold);
  color: var(--szoveg);
  font-family: var(--font-szoveg);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--zold-sotet); text-decoration: none; transition: color var(--atmenet); }
a:hover { color: var(--zold-vilag); }

/* ── Levél háttér textúra ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(106,176,76,0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(26,92,26,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Navigáció ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,253,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,92,26,0.10);
  transition: box-shadow var(--atmenet);
}
.nav.scrolled { box-shadow: var(--arnyek); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-szoveg {
  font-family: var(--font-cim);
  font-size: 18px;
  font-weight: 600;
  color: var(--zold-sotet);
  line-height: 1.2;
}
.nav-logo-szoveg span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--szoveg-halvany);
  font-family: var(--font-szoveg);
  letter-spacing: 0.05em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-menu a {
  font-family: var(--font-szoveg);
  font-size: 14px;
  font-weight: 500;
  color: var(--szoveg);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--atmenet);
  letter-spacing: 0.03em;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--zold-halvany);
  color: var(--zold-sotet);
}
.nav-gomb {
  background: var(--zold-sotet) !important;
  color: var(--feher) !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
}
.nav-gomb:hover {
  background: var(--zold-kozep) !important;
  color: var(--feher) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--szoveg);
  border-radius: 2px;
  transition: all var(--atmenet);
}

/* ── HERO szekció ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(160deg, var(--zold-pasztell) 0%, var(--foold) 60%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,176,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,92,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-belso {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tartalom {}
.hero-cimke {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--zold-halvany);
  color: var(--zold-sotet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-cimke::before {
  content: '🌿';
  font-size: 14px;
}
.hero-cim {
  font-family: var(--font-cim);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  color: var(--zold-sotet);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-cim em {
  font-style: italic;
  color: var(--zold-vilag);
}
.hero-alcim {
  font-size: 18px;
  color: var(--szoveg-halvany);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-gombok {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-kep {
  position: relative;
}
.hero-kep-wrapper {
  position: relative;
  border-radius: var(--radius-nagy);
  overflow: hidden;
  box-shadow: var(--arnyek-nagy);
  aspect-ratio: 4/5;
  background: var(--zold-halvany);
}
.hero-kep-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-kep-dekor {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--arany);
  border-radius: 50%;
  opacity: 0.6;
}
.hero-stat {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--feher);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--arnyek-nagy);
  border-left: 4px solid var(--zold-vilag);
}
.hero-stat-szam {
  font-family: var(--font-cim);
  font-size: 32px;
  font-weight: 700;
  color: var(--zold-sotet);
  line-height: 1;
}
.hero-stat-cimke {
  font-size: 12px;
  color: var(--szoveg-halvany);
  margin-top: 4px;
}

/* ── Gombok ── */
.gomb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-szoveg);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--atmenet);
  border: none;
  text-decoration: none;
}
.gomb-elsdl {
  background: var(--zold-sotet);
  color: var(--feher);
  box-shadow: 0 4px 16px rgba(26,92,26,0.25);
}
.gomb-elsdl:hover {
  background: var(--zold-kozep);
  color: var(--feher);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,92,26,0.30);
}
.gomb-masod {
  background: transparent;
  color: var(--zold-sotet);
  border: 2px solid var(--zold-sotet);
}
.gomb-masod:hover {
  background: var(--zold-sotet);
  color: var(--feher);
  transform: translateY(-2px);
}
.gomb-vilag {
  background: var(--feher);
  color: var(--zold-sotet);
  box-shadow: var(--arnyek);
}
.gomb-vilag:hover {
  background: var(--zold-halvany);
  color: var(--zold-sotet);
  transform: translateY(-2px);
}

/* ── Szekció közös stílusok ── */
.szekció {
  padding: 100px 0;
  position: relative;
}
.szekció-belso {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.szekció-fejlec {
  text-align: center;
  margin-bottom: 64px;
}
.szekció-cimke {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zold-vilag);
  margin-bottom: 16px;
}
.szekció-cim {
  font-family: var(--font-cim);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--zold-sotet);
  line-height: 1.15;
  margin-bottom: 16px;
}
.szekció-alcim {
  font-size: 17px;
  color: var(--szoveg-halvany);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Rólunk szekció ── */
.rolunk {
  background: var(--feher);
}
.rolunk-racs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rolunk-kep {
  position: relative;
}
.rolunk-kep-fo {
  border-radius: var(--radius-nagy);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--zold-halvany);
  box-shadow: var(--arnyek-nagy);
}
.rolunk-kep-fo img { width:100%; height:100%; object-fit:cover; object-position: center center; }
.rolunk-kep-kis {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 200px; height: 260px;
  border-radius: var(--radius-nagy);
  overflow: hidden;
  border: 5px solid var(--feher);
  box-shadow: var(--arnyek-nagy);
  background: var(--zold-halvany);
}
.rolunk-kep-kis img { width:100%; height:100%; object-fit:cover; object-position: center top; }
.rolunk-cim {
  font-family: var(--font-cim);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--zold-sotet);
  line-height: 1.2;
  margin-bottom: 24px;
}
.rolunk-szoveg {
  font-size: 16px;
  color: var(--szoveg-halvany);
  line-height: 1.8;
  margin-bottom: 32px;
}
.rolunk-ertekek {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.ertek-elem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ertek-ikon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--zold-halvany);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ertek-cim {
  font-size: 14px;
  font-weight: 600;
  color: var(--szoveg);
  margin-bottom: 2px;
}
.ertek-leiras {
  font-size: 13px;
  color: var(--szoveg-halvany);
  line-height: 1.5;
}

/* ── Hírek / Blog ── */
.hirek {
  background: var(--zold-pasztell);
}
.hirek-racs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hirek-kiemelt {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--feher);
  border-radius: var(--radius-nagy);
  overflow: hidden;
  box-shadow: var(--arnyek);
  margin-bottom: 8px;
}
.hirek-kiemelt-kep {
  aspect-ratio: 4/3;
  background: var(--zold-halvany);
  overflow: hidden;
}
.hirek-kiemelt-kep img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.hirek-kiemelt:hover .hirek-kiemelt-kep img { transform: scale(1.04); }
.hirek-kiemelt-tartalom {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-cimke {
  display: inline-block;
  background: var(--zold-halvany);
  color: var(--zold-sotet);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.post-cim {
  font-family: var(--font-cim);
  font-size: 26px;
  font-weight: 700;
  color: var(--szoveg);
  line-height: 1.25;
  margin-bottom: 12px;
}
.post-cim a { color: inherit; }
.post-cim a:hover { color: var(--zold-kozep); }
.post-kivonat {
  font-size: 15px;
  color: var(--szoveg-halvany);
  line-height: 1.7;
  margin-bottom: 24px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--szoveg-halvany);
}
.post-meta-szerzo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-meta-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--zold-halvany);
  overflow: hidden;
}
.post-meta-avatar img { width:100%; height:100%; object-fit:cover; }
.post-meta-elvalaszto { opacity: 0.3; }
.post-kártya {
  background: var(--feher);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--arnyek);
  transition: transform var(--atmenet), box-shadow var(--atmenet);
  display: flex;
  flex-direction: column;
}
.post-kártya:hover {
  transform: translateY(-6px);
  box-shadow: var(--arnyek-nagy);
}
.post-kártya-kep {
  aspect-ratio: 16/10;
  background: var(--zold-halvany);
  overflow: hidden;
}
.post-kártya-kep img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.post-kártya:hover .post-kártya-kep img { transform: scale(1.05); }
.post-kártya-tartalom {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-kártya-tartalom .post-cim { font-size: 19px; }
.post-kártya-tartalom .post-kivonat { font-size: 14px; flex: 1; }
.hirek-tobb {
  text-align: center;
  margin-top: 48px;
}

/* ── Eseménynaptár szekció ── */
.esemenyek {
  background: var(--feher);
}
.esemeny-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.esemeny-elem {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: var(--zold-pasztell);
  border-radius: var(--radius);
  border-left: 4px solid var(--zold-vilag);
  transition: all var(--atmenet);
}
.esemeny-elem:hover {
  background: var(--zold-halvany);
  transform: translateX(4px);
}
.esemeny-datum {
  text-align: center;
  background: var(--zold-sotet);
  color: var(--feher);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 64px;
  flex-shrink: 0;
}
.esemeny-datum-nap {
  font-family: var(--font-cim);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.esemeny-datum-honap {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}
.esemeny-info {
  flex: 1;
}
.esemeny-cim {
  font-family: var(--font-cim);
  font-size: 20px;
  font-weight: 600;
  color: var(--szoveg);
  margin-bottom: 6px;
}
.esemeny-cim a { color: inherit; }
.esemeny-cim a:hover { color: var(--zold-kozep); }
.esemeny-reszletek {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--szoveg-halvany);
  margin-bottom: 8px;
}
.esemeny-reszletek span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.esemeny-kivonat {
  font-size: 14px;
  color: var(--szoveg-halvany);
  line-height: 1.6;
}
.cal-wrapper {
  margin-top: 48px;
  background: var(--feher);
  border: 1px solid rgba(26,92,26,0.12);
  border-radius: var(--radius-nagy);
  padding: 32px;
  box-shadow: var(--arnyek);
}
#naptar-container { min-height: 400px; }

/* ── Galéria szekció ── */
.galeria {
  background: var(--szoveg);
  color: var(--feher);
  overflow: hidden;
}
.galeria .szekció-cimke { color: var(--zold-vilag); }
.galeria .szekció-cim { color: var(--feher); }
.galeria .szekció-alcim { color: rgba(255,255,255,0.65); }
.galeria-racs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
  border-radius: var(--radius-nagy);
  overflow: hidden;
}
.galeria-elem {
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  position: relative;
}
.galeria-elem::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,92,26,0.4);
  opacity: 0;
  transition: opacity var(--atmenet);
}
.galeria-elem:hover::after { opacity: 1; }
.galeria-elem img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform 0.5s ease;
}
.galeria-elem:hover img { transform: scale(1.08); }
.galeria-elem-nagy {
  grid-column: span 2;
  grid-row: span 2;
}
.galeria-tobb {
  text-align: center;
  margin-top: 40px;
}

/* ── Kapcsolat szekció ── */
.kapcsolat {
  background: var(--zold-pasztell);
}
.kapcsolat-racs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.kapcsolat-info-elem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.kapcsolat-ikon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--zold-sotet);
  color: var(--feher);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.kapcsolat-info-cim {
  font-weight: 600;
  font-size: 14px;
  color: var(--szoveg);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.kapcsolat-info-ertek {
  font-size: 15px;
  color: var(--szoveg-halvany);
  line-height: 1.6;
}
.kapcsolat-info-ertek a {
  color: var(--zold-kozep);
}
.kapcsolat-info-ertek a:hover {
  color: var(--zold-sotet);
}
/* Kapcsolat form */
.urlap {
  background: var(--feher);
  border-radius: var(--radius-nagy);
  padding: 40px;
  box-shadow: var(--arnyek);
}
.urlap-cim {
  font-family: var(--font-cim);
  font-size: 24px;
  font-weight: 700;
  color: var(--zold-sotet);
  margin-bottom: 24px;
}
.urlap-csoport {
  margin-bottom: 20px;
}
.urlap-cimke {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--szoveg);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.urlap-mezo {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(26,92,26,0.15);
  border-radius: 10px;
  background: var(--foold);
  font-family: var(--font-szoveg);
  font-size: 15px;
  color: var(--szoveg);
  transition: border-color var(--atmenet), box-shadow var(--atmenet);
  outline: none;
}
.urlap-mezo:focus {
  border-color: var(--zold-vilag);
  box-shadow: 0 0 0 3px rgba(106,176,76,0.15);
}
textarea.urlap-mezo { resize: vertical; min-height: 120px; }
.urlap-gomb {
  width: 100%;
  padding: 14px;
  background: var(--zold-sotet);
  color: var(--feher);
  border: none;
  border-radius: 10px;
  font-family: var(--font-szoveg);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--atmenet);
  letter-spacing: 0.03em;
}
.urlap-gomb:hover {
  background: var(--zold-kozep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,92,26,0.25);
}

/* ── Footer ── */
.footer {
  background: var(--szoveg);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-belso {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-fels {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo-nev {
  font-family: var(--font-cim);
  font-size: 18px;
  font-weight: 600;
  color: var(--feher);
  line-height: 1.2;
}
.footer-leiras {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--feher);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--atmenet);
  text-decoration: none;
}
.footer-social a:hover { background: var(--zold-vilag); }
.footer-oszlop-cim {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--feher);
  margin-bottom: 20px;
}
.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--atmenet);
  text-decoration: none;
}
.footer-menu a:hover { color: var(--zold-vilag); }
.footer-als {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-als a {
  color: var(--zold-vilag);
  text-decoration: none;
}

/* ── Bejegyzés oldal ── */
.post-fejlec {
  padding: 120px 0 64px;
  background: linear-gradient(160deg, var(--zold-pasztell) 0%, var(--foold) 70%);
  text-align: center;
}
.post-fejlec-belso {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.post-oldal-cim {
  font-family: var(--font-cim);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--zold-sotet);
  line-height: 1.15;
  margin-bottom: 24px;
}
.post-tartalom {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px;
}
.post-tartalom h1,h2,h3,h4 {
  font-family: var(--font-cim);
  color: var(--zold-sotet);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.post-tartalom h2 { font-size: 32px; }
.post-tartalom h3 { font-size: 24px; }
.post-tartalom p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--szoveg);
  margin-bottom: 24px;
}
.post-tartalom figure { margin: 40px 0; }
.post-tartalom figure img {
  border-radius: var(--radius);
  width: 100%;
}
.post-tartalom blockquote {
  border-left: 4px solid var(--zold-vilag);
  padding: 16px 24px;
  background: var(--zold-pasztell);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  font-family: var(--font-cim);
  font-size: 20px;
  font-style: italic;
  color: var(--zold-sotet);
}

/* ── Betöltési animáció ── */
@keyframes felcsuszas {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animalt {
  opacity: 0;
  animation: felcsuszas 0.7s ease forwards;
}
.animalt-1 { animation-delay: 0.1s; }
.animalt-2 { animation-delay: 0.25s; }
.animalt-3 { animation-delay: 0.4s; }
.animalt-4 { animation-delay: 0.55s; }

/* ── Ghost kötelező CSS osztályok (kGallery / card width) ── */
.kg-width-wide {
  margin-left: calc(50% - 50vw + 48px);
  margin-right: calc(50% - 50vw + 48px);
  max-width: 1100px;
}
.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}
.kg-image { max-width: 100%; }
.kg-image-card { margin: 1.5em 0; }
.kg-image-card img { border-radius: var(--radius); }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; gap: 8px; margin-bottom: 8px; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.kg-bookmark-card { background: var(--feher); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.kg-bookmark-container { display: flex; }
.kg-bookmark-content { padding: 20px; flex: 1; }
.kg-bookmark-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.kg-bookmark-description { font-size: 13px; color: var(--szoveg-halvany); }
.kg-bookmark-thumbnail { width: 160px; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-video-card { margin: 1.5em 0; }
.kg-video-card video { width: 100%; border-radius: var(--radius); }
.kg-audio-card { background: var(--zold-pasztell); border-radius: var(--radius); padding: 16px; margin: 1.5em 0; }
.kg-callout-card { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius); background: var(--zold-pasztell); border-left: 4px solid var(--zold-vilag); margin: 1.5em 0; }
.kg-callout-emoji { font-size: 24px; flex-shrink: 0; }
.kg-toggle-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 16px; margin: 1.5em 0; }
.kg-toggle-heading { font-weight: 600; cursor: pointer; }
.kg-toggle-content { margin-top: 12px; }
.kg-button-card { text-align: center; margin: 1.5em 0; }
.kg-button-card a { display: inline-block; padding: 12px 28px; background: var(--zold-sotet); color: white; border-radius: 8px; font-weight: 600; text-decoration: none; }
.kg-divider { border: none; border-top: 1px solid rgba(26,92,26,0.15); margin: 2em 0; }
.kg-header-card { padding: 48px 32px; text-align: center; border-radius: var(--radius); margin: 1.5em 0; }
.kg-product-card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 24px; margin: 1.5em 0; }

/* ── FullCalendar override ── */
.fc { font-family: var(--font-szoveg) !important; }
.fc .fc-button-primary {
  background: var(--zold-sotet) !important;
  border-color: var(--zold-sotet) !important;
}
.fc .fc-button-primary:hover {
  background: var(--zold-kozep) !important;
  border-color: var(--zold-kozep) !important;
}
.fc .fc-daygrid-day.fc-day-today { background: var(--zold-halvany) !important; }
.fc .fc-event {
  background: var(--zold-sotet) !important;
  border-color: var(--zold-sotet) !important;
  border-radius: 6px !important;
}
.fc-toolbar-title {
  font-family: var(--font-cim) !important;
  font-size: 22px !important;
  color: var(--zold-sotet) !important;
}

/* ── Reszponzív ── */
@media (max-width: 1024px) {
  .footer-fels { grid-template-columns: 1fr 1fr; }
  .hirek-racs { grid-template-columns: 1fr 1fr; }
  .hirek-kiemelt { grid-column: span 2; }
  .galeria-racs { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,160px); }
  .galeria-elem-nagy { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.nyitva {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--foold);
    padding: 32px;
    gap: 8px;
  }
  .nav-menu.nyitva a { font-size: 18px; padding: 12px 16px; }
  .hero-belso { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-kep { display: none; }
  .hero-gombok { justify-content: center; }
  .rolunk-racs { grid-template-columns: 1fr; }
  .rolunk-kep { display: none; }
  .rolunk-ertekek { grid-template-columns: 1fr; }
  .hirek-racs { grid-template-columns: 1fr; }
  .hirek-kiemelt { grid-column: span 1; grid-template-columns: 1fr; }
  .galeria-racs { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4,140px); }
  .galeria-elem-nagy { grid-column: span 2; }
  .kapcsolat-racs { grid-template-columns: 1fr; }
  .footer-fels { grid-template-columns: 1fr; gap: 32px; }
  .footer-als { flex-direction: column; gap: 8px; text-align: center; }
  .szekció { padding: 64px 0; }
}
