

/* ── Bootstrap változó felülírások ─────────────────── */
:root {
  --bs-primary:        #5347EA;
  --bs-primary-rgb:    83, 71, 234;
  --bs-secondary:      #D7FC00;
  --bs-body-bg:        #FAF7F2;
  --bs-body-color:     #1D1D1F;
  --bs-border-radius:  .9rem;
  --bs-border-radius-lg: 1.5rem;
  --bs-font-sans-serif: 'Sora', system-ui, sans-serif;

  /* Márka tokenek (3 fő szín) */
  --ink:           #1D1D1F;
  --lime:          #D7FC00;
  --violet:        #5347EA;
  --pink:          #FF4ED5;

  /* Származtatottak */
  --ink-soft:      #5A5A60;
  --paper:         #FAF7F2;
  --paper-warm:    #F2EFE7;
  --line:          #E8E2D5;

  /* Halvány paszteles felületek a kártyákhoz (a 3 színből származtatva) */
  --lime-soft:     #F3FFB8;
  --violet-soft:   #E0DCFF;
  --ink-soft-bg:   #EDEDEE;

  /* Legacy aliasok visszafelé kompatibilitásnak */
  --accent:        var(--violet);
  --accent-2:      var(--lime);

  --shadow-sm:    0 2px 8px rgba(29,29,31,.06);
  --shadow-md:    0 8px 24px rgba(29,29,31,.08);
  --shadow-lg:    0 16px 40px rgba(83,71,234,.18);
  --shadow-pop:   6px 6px 0 var(--ink);
  --shadow-pop-sm: 3px 3px 0 var(--ink);

  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Alapok ────────────────────────────────────────── */
* {
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-x: clip;
  overflow-y: scroll;
  width: 100%;
}

body {
  font-family: var(--bs-font-sans-serif);
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow-x: clip;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

::selection { background: var(--lime); color: var(--ink); }

/* Apró pötty mintázat háttér */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,46,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

main, footer, nav { position: relative; z-index: 1; }

/* ── Tipográfia ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.display-1, .display-2, .display-3 {
  font-weight: 900;
  letter-spacing: -.035em;
}

.text-soft { color: var(--ink-soft) !important; }

/* Színes "marker" aláhúzás */
.marker {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.marker::before {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  bottom: 6%;
  height: 38%;
  background: var(--lime);
  border-radius: 4px;
  z-index: -1;
  transform: skewX(-6deg);
}
/* Marker stílusváltozatok — a 3 színből bármi lehet */
.marker--coral::before  { background: var(--violet); opacity: .35; }  /* lila marker */
.marker--mint::before   { background: var(--lime); opacity: 1; }       /* erős lime */
.marker--violet::before { background: var(--violet); opacity: .25; }  /* halvány lila */

/* Gradiens szöveg */
.text-gradient {
  background: linear-gradient(135deg, var(--violet) 0%, #7B70FF 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navigáció ─────────────────────────────────────── */
#mainNav {
  transition: var(--transition);
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(29,29,31,.08);
  border-bottom: 1px solid rgba(232,226,213,.6);
}

#mainNav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#mainNav.scrolled {
  background: rgba(250,247,242,.98);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: var(--shadow-sm);
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
}

/* Navbar központi link */
.navbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center-link {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  transition: var(--transition);
  box-shadow: var(--shadow-pop-sm);
}

.nav-center-link:hover {
  background: var(--lime);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-center-link.active {
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ink);
}

/* Hamburger gomb */
.hamburger-btn {
  padding: .5rem .75rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
}

.hamburger-btn:hover {
  background: var(--lime);
  transform: scale(1.05);
}

/* Offcanvas menü stílusok */
.offcanvas {
  background: var(--paper);
  border-left: 2px solid var(--ink);
  max-width: 340px;
}

.offcanvas-header {
  border-bottom: 2px dashed var(--line);
  padding: 1.5rem;
}

.offcanvas-body {
  padding: 1.5rem;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.offcanvas-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.2rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--paper);
  transition: var(--transition);
}

.offcanvas-nav-link i {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  color: var(--ink-soft);
}

.offcanvas-nav-link:hover {
  background: var(--lime-soft);
  border-color: var(--ink);
  transform: translateX(4px);
}

.offcanvas-nav-link.active {
  background: var(--lime);
  border-color: var(--ink);
  box-shadow: var(--shadow-pop-sm);
}

.offcanvas-nav-link.active i {
  color: var(--ink);
}

/* Responsive offcanvas megjelenés */
@media (max-width: 767.98px) {
  .offcanvas {
    max-width: 85%;
  }
}

/* Mobil layout optimalizálás */
@media (max-width: 991.98px) {
  .navbar-center {
    display: none !important;
  }

  #mainNav .container {
    justify-content: space-between;
  }
}

.brand {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  display: flex; align-items: center; gap: .55rem;
  text-decoration: none;
  color: var(--ink) !important;
}
.brand__logo {
  height: 36px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.brand:hover .brand__logo {
  transform: scale(1.05) rotate(-3deg);
}
.brand__logo-fallback {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  color: var(--ink);
}

.navbar-nav .nav-link {
  color: var(--ink-soft) !important;
  font-weight: 500;
  position: relative;
  padding: .5rem .9rem !important;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 6px;
  background: var(--accent-2);
  border-radius: 4px;
  transform: translateX(-50%) skewX(-12deg);
  transition: width .28s ease;
  z-index: -1;
  opacity: .8;
}
.navbar-nav .nav-link:hover {
  color: var(--ink) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }

.navbar-toggler {
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: .35rem .55rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ── Gombok ────────────────────────────────────────── */
.btn {
  font-weight: 600;
  border-radius: 999px;
  padding: .7rem 1.5rem;
  transition: var(--transition);
  border-width: 2px;
}

.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-pop-sm);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--lime);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--lime);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink) !important;
}

.btn-accent {
  background: var(--lime);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: var(--shadow-pop-sm);
}
.btn-accent:hover {
  background: var(--lime);
  border-color: var(--ink);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--violet);
}

.btn-ghost {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-pop-sm);
}
.btn-ghost:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--violet);
}

.btn-lg {
  padding: .9rem 1.9rem;
  font-size: 1rem;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--shadow-pop-sm);
  margin-bottom: 1.5rem;
}
.hero__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(215,252,0,.4);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

/* Hero CTA csoport */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

/* Hero illusztráció oldal */
.hero-art {
  position: relative;
  min-height: 540px;
  width: 100%;
}

.hero-art__photo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: 70%;
  max-width: 360px;
  aspect-ratio: 4/5;
  border: 3px solid var(--ink);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--ink);
  background: var(--paper-warm);
  z-index: 2;
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s cubic-bezier(.4,0,.2,1);
}
.hero-art__photo:hover {
  transform: translate(-50%, -50%) rotate(-1deg);
  box-shadow: 14px 14px 0 var(--accent);
}
.hero-art__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Színes "alátét" kártya a fotó mögött */
.hero-art__photo::before {
  content: '';
  position: absolute;
  inset: -6px -6px -6px -6px;
  background: var(--accent-2);
  border: 3px solid var(--ink);
  border-radius: 1.5rem;
  z-index: -1;
  transform: rotate(8deg);
}

/* Polaroid alsó "felirat" csík */
.hero-art__photo::after {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  background: var(--paper);
  border-top: 2px solid var(--ink);
  padding: .55rem 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

/* ── Lebegő kártyák a hero fotó körül ───────────── */
.hero-art__card {
  position: absolute;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  padding: .75rem 1rem;
  box-shadow: var(--shadow-pop);
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  font-weight: 600;
  z-index: 3;
  white-space: nowrap;
}
.hero-art__card .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  color: var(--paper);
  flex-shrink: 0;
  font-size: .8rem;
  border: 2px solid var(--ink);
}
.hero-art__card small {
  display: block;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .72rem;
  margin-top: 1px;
}

/* Kártya 1: bal felső sarokba lóg */
.hero-art__card--1 {
  top: 4%;
  left: -2%;
  transform: rotate(-4deg);
  animation: float 5s ease-in-out infinite;
}

/* Kártya 2: jobb-középső szélen kifelé lóg */
.hero-art__card--2 {
  top: 42%;
  right: -4%;
  transform: rotate(3deg);
  animation: float 5s ease-in-out infinite 1.2s;
}

/* Kártya 3: alul, jobbra kicsit eltolva */
.hero-art__card--3 {
  bottom: 6%;
  left: 8%;
  transform: rotate(2deg);
  animation: float 5s ease-in-out infinite 2.4s;
}

/* Apró "csillag" dekoráció a heroban — jobb felső sarok körül */
.hero-art__deco {
  position: absolute;
  font-size: 1.6rem;
  z-index: 1;
}
.hero-art__deco--star {
  top: 18%;
  right: 6%;
  color: var(--accent-2);
  animation: spin 6s linear infinite;
}
.hero-art__deco--heart {
  bottom: 28%;
  left: 0;
  color: var(--violet);
  font-size: 1.3rem;
  animation: float 3s ease-in-out infinite;
}

.hero-art__blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--violet) 0%, var(--lime) 100%);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  opacity: .12;
  animation: morph 12s ease-in-out infinite;
  z-index: 0;
}

/* Csillag/szikra dekorációk */
.sparkle {
  position: absolute;
  color: var(--accent);
  font-size: 1.4rem;
  animation: spin 8s linear infinite;
  z-index: 1;
}
.sparkle--1 { top: 15%; right: 12%; color: var(--accent-2); }
.sparkle--2 { bottom: 20%; left: 8%; color: var(--violet); animation-duration: 6s; }
.sparkle--3 { top: 60%; right: 5%; color: var(--lime); animation-duration: 10s; }

/* ── Video Hero Section ────────────────────────────── */
.hero--video {
  position: relative;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  contain: layout;
}

.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  contain: layout size;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  will-change: auto;
}

.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(29, 29, 31, 0.75) 0%,
    rgba(29, 29, 31, 0.45) 50%,
    rgba(29, 29, 31, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero__title-video {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero__title-video .marker--bright::before {
  background: var(--lime);
  opacity: 1;
}

.hero__pill-video {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: .5rem 1.2rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero__pill-video .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(215, 252, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.hero__subtitle-video {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-cta-video {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__stat-item strong {
  color: var(--lime);
  font-weight: 700;
  margin-right: 0.25rem;
}

.hero__stat-divider {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.hero__cta-bottom {
  margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero--video {
    min-height: 75vh;
  }

  .hero__title-video {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero__subtitle-video {
    font-size: 1rem;
  }

  .hero__stats {
    font-size: 0.85rem;
    gap: 0.75rem;
  }

  .hero-cta-video {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-video .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ── Marquee csíkozó ───────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  contain: layout style;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  will-change: transform;
}
.marquee-track span:not(.marquee-dot) {
  color: var(--paper);
}
.marquee-dot {
  display: inline-grid;
  place-items: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
  align-self: center;
}

/* ── EVENT PHOTOS SECTION ─────────────────────────── */
.event-photos-section {
  padding: 0;
  margin: 0;
}

/* ── Gallery slider ───────────────────────────────── */
.gallery-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.gallery-slider:active {
  cursor: grabbing;
}

.gallery-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.gallery-slider__item {
  flex: 0 0 100%;
  padding: 0 4px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .gallery-slider__item { flex: 0 0 50%; }
}

@media (min-width: 992px) {
  .gallery-slider__item { flex: 0 0 25%; }
}

.gallery-slider__item img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.gallery-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-pop-sm);
  transition: var(--transition);
}

.gallery-slider__btn:hover:not(:disabled) {
  background: var(--lime);
  transform: translateY(-50%) scale(1.05);
}

.gallery-slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-slider__btn--prev { left: 8px; }
.gallery-slider__btn--next { right: 8px; }

.event-photo-card {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.event-photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.event-photo-card:hover .event-photo-card__img {
  transform: scale(1.1);
}

.event-photo-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  pointer-events: none;
}

.event-photo-card__content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
}

.event-photo-card__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.event-photo-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: inline-block;
  position: relative;
  padding-bottom: 0.3rem;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.event-photo-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

/* ── Section alapok ────────────────────────────────── */
section {
  padding: 5rem 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  background: var(--accent-2);
  color: var(--ink);
  font-weight: 700;
  font-size: .8rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  border: 2px solid var(--ink);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.6;
}

/* ── Élethelyzet kártyák ───────────────────────────── */
.situation-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.4rem;
  padding: 1.8rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-pop-sm);
  display: flex;
  flex-direction: column;
}
.situation-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0 var(--ink);
}
.situation-card--yellow { background: var(--lime-soft); }
.situation-card--pink   { background: var(--paper); }
.situation-card--purple { background: var(--violet-soft); }
.situation-card--mint   { background: var(--ink-soft-bg); }

.situation-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.situation-card__icon {
  width: 110px;
  height: 110px;
  margin: .5rem 0 1.2rem;
  display: grid; place-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  overflow: hidden;
  padding: 12px;
}
.situation-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.situation-card__text {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

/* Az utolsó "ajánló" kártya — színes kontraszt */
.situation-card--cta {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.situation-card--cta .situation-card__title { color: var(--accent-2); }
.situation-card--cta p { color: rgba(255,255,255,.88); font-size: 1rem; line-height: 1.5; margin-bottom: 1.2rem; }

/* ── Lépés-kártyák ─────────────────────────────────── */
.step-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-pop-sm);
}
.step-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0 var(--ink);
}
.step-card__num {
  position: absolute;
  top: -18px; left: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--ink);
}
.step-card:nth-child(2) .step-card__num,
.col-md-6:nth-child(2) .step-card__num,
.col-lg-3:nth-child(2) .step-card__num { background: var(--violet); color: var(--paper); }
.step-card:nth-child(3) .step-card__num,
.col-md-6:nth-child(3) .step-card__num,
.col-lg-3:nth-child(3) .step-card__num { background: var(--lime); }
.step-card:nth-child(4) .step-card__num,
.col-md-6:nth-child(4) .step-card__num,
.col-lg-3:nth-child(4) .step-card__num { background: var(--accent); color: var(--paper); }

.step-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--paper-warm);
  border-radius: 14px;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  margin-top: .6rem;
}
.step-card h5 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
}
.step-card p {
  color: var(--ink-soft);
  font-size: .92rem;
  margin: 0;
  line-height: 1.55;
}

/* ── Esemény kártyák ───────────────────────────────── */
.event-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.3rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-pop-sm);
  position: relative;
}
.event-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0 var(--ink);
}

.event-card__cover {
  height: 200px;
  background: linear-gradient(135deg, var(--violet) 0%, #7B70FF 100%);
  position: relative;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.event-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.col-md-6:nth-child(2) .event-card__cover {
  background: linear-gradient(135deg, var(--lime) 0%, #F3FFB8 100%);
}
.col-md-6:nth-child(3) .event-card__cover {
  background: linear-gradient(135deg, var(--ink) 0%, var(--violet) 100%);
}
.col-md-6:nth-child(4) .event-card__cover {
  background: linear-gradient(135deg, var(--lime) 0%, var(--violet) 100%);
}

.event-card__date {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: .35rem .7rem;
  text-align: center;
  min-width: 56px;
  box-shadow: var(--shadow-pop-sm);
}
.event-card__day {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
.event-card__month {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-soft);
  margin-top: .15rem;
}

.event-card__featured {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent-2);
  color: var(--ink);
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  border: 2px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.event-card__body {
  padding: 1.5rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: .6rem;
  line-height: 1.2;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: .8rem;
}
.event-card__meta i {
  color: var(--accent);
  width: 14px;
  display: inline-block;
}

.event-card__desc {
  color: var(--ink);
  font-size: .92rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.event-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.2rem;
}
.tag-mini {
  background: var(--violet);
  border: 1.5px solid var(--line);
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  color: #fff;
}

.event-card__btn {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.event-card__btn:hover {
  background: var(--accent);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ── Esemény részletek oldal stílusok ──────────────── */
.event-detail__info-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.2rem;
  padding: 1.8rem;
  box-shadow: var(--shadow-pop-sm);
  transition: var(--transition);
  margin-bottom: 1.5rem;
}
.event-detail__info-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.event-detail__section-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.event-detail__section-title i {
  color: var(--violet);
  font-size: 1.6rem;
}

.event-detail__meta-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px dashed var(--line);
}
.event-detail__meta-row:last-child {
  border-bottom: none;
}
.event-detail__meta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime-soft);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--ink);
}
.event-detail__meta-label {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: .15rem;
}
.event-detail__meta-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

/* Esemény lista oldal fejléc */
.events-list-header {
  text-align: center;
  padding: 3rem 0 2rem;
}

/* ── Karakter kártyák ──────────────────────────────── */
.char-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.4rem;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-pop-sm);
  cursor: pointer;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
}
.char-card:hover {
  transform: translate(-4px, -4px) rotate(-1deg);
  box-shadow: 7px 7px 0 var(--ink);
}
.char-card--yellow { background: var(--lime-soft); }
.char-card--pink   { background: var(--paper); }
.char-card--purple { background: var(--violet-soft); }
.char-card--mint   { background: var(--ink-soft-bg); }

.char-card__label {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  z-index: 2;
}
.char-card__arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-size: 1.1rem;
  font-weight: 900;
  z-index: 2;
  transition: var(--transition);
}
.char-card:hover .char-card__arrow {
  background: var(--accent-2);
  transform: rotate(-45deg);
}
.char-card__img {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.char-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  transition: var(--transition);
}
.char-card:hover .char-card__img img {
  transform: scale(1.06) translateY(-4px);
}

/* ── Statisztikák ──────────────────────────────────── */
.stat-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.3rem;
  padding: 1.8rem 1.4rem;
  text-align: left;
  position: relative;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-pop-sm);
  overflow: hidden;
}
.stat-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0 var(--ink);
}
.stat-card--yellow { background: var(--lime-soft); }
.stat-card--pink   { background: var(--paper); }
.stat-card--purple { background: var(--violet-soft); }
.stat-card--mint   { background: var(--ink-soft-bg); }

.stat-card__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
  color: var(--ink);
  opacity: .35;
  transition: var(--transition);
}
.stat-card:hover .stat-card__icon {
  opacity: 1;
  transform: rotate(-12deg) scale(1.1);
}

.stat-card__num {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-card__num .stat-suffix {
  color: var(--violet);
  font-size: .7em;
  margin-left: 2px;
}
.stat-card__label {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ── Vélemény kártyák ──────────────────────────────── */
.testimonial-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.3rem;
  padding: 1.6rem;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-pop-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px) rotate(-.5deg);
  box-shadow: var(--shadow-pop);
}
.testimonial-card:nth-child(2):hover { transform: translateY(-4px) rotate(.6deg); }

.testimonial-card--yellow { background: var(--lime-soft); }
.testimonial-card--pink   { background: var(--paper); }
.testimonial-card--purple { background: var(--violet-soft); }
.testimonial-card--mint   { background: var(--ink-soft-bg); }

.testimonial-card__stars {
  display: inline-flex;
  background: var(--accent-2);
  border: 2px solid var(--ink);
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--ink);
  margin-bottom: 1rem;
  align-self: flex-start;
}
.testimonial-card__text {
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex: 1;
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: 1rem;
  border-top: 1.5px dashed var(--ink);
}
.testimonial-card__person .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  color: var(--paper);
  font-size: .95rem;
  border: 2px solid var(--ink);
}
.testimonial-card__person strong { display: block; font-size: .88rem; font-weight: 800; letter-spacing: .03em; }
.testimonial-card__person span { color: var(--ink-soft); font-size: .75rem; }

/* ── Partner kártyák ───────────────────────────────── */
.partner-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.3rem;
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-pop-sm);
  transition: var(--transition);
  margin-bottom: 1rem;
}
.partner-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}
.partner-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.partner-card__head .partner-name {
  font-weight: 800;
  font-size: 1.1rem;
}
.partner-card__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 1rem;
}
.partner-card__quote {
  color: var(--ink-soft);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.5;
  margin: 0;
}

/* ── Video kártyák ─────────────────────────────────── */
.video-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: var(--shadow-pop-sm);
  transition: var(--transition);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.video-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.video-card__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 aspect ratio for vertical/portrait videos */
  overflow: hidden;
  background: var(--ink);
  max-height: 80vh; /* Prevent videos from being too tall on desktop */
  contain: layout size;
}

.video-card__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

/* Desktop - limit height for vertical videos */
@media (min-width: 992px) {
  .video-card__wrapper {
    max-height: 700px;
  }

  /* If max-height kicks in, we need to adjust for proper aspect ratio */
  .video-card {
    max-width: 400px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .video-card__wrapper {
    max-height: 600px;
  }

  .video-card {
    max-width: 350px;
  }
}

/* Responsive video cards for mobile */
@media (max-width: 767.98px) {
  .video-card__wrapper {
    padding-bottom: 177.78%; /* Keep 9:16 ratio on mobile */
    max-height: 70vh; /* Limit height on small screens */
  }

  .video-card {
    max-width: 100%;
  }
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  margin-bottom: .8rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-pop-sm);
}
.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.faq-item.open {
  background: var(--paper-warm);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent-2);
  display: grid; place-items: center;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--accent-2);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer__inner {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.55;
}

/* ── Hírlevél form ─────────────────────────────────── */
.newsletter-form {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.4rem;
  padding: 2rem;
  box-shadow: var(--shadow-pop);
}
.form-label-clean {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin-bottom: .35rem;
  display: block;
}
.form-label-clean span { color: var(--violet); }
.form-input-clean {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  padding: .55rem 0;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: var(--transition);
}
.form-input-clean:focus {
  border-bottom-color: var(--accent);
}
.checkbox-clean {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox-clean input { display: none; }
.checkbox-clean__box {
  width: 22px; height: 22px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  flex-shrink: 0;
  transition: var(--transition);
  margin-top: 1px;
  position: relative;
}
.checkbox-clean input:checked ~ .checkbox-clean__box {
  background: var(--accent-2);
}
.checkbox-clean input:checked ~ .checkbox-clean__box::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--ink);
}

/* ── CTA blokk (általános) ─────────────────────────── */
.cta-band {
  background: var(--accent-2);
  border: 2px solid var(--ink);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}
.cta-band::before {
  content: '✨';
  position: absolute;
  font-size: 12rem;
  right: -20px; bottom: -40px;
  opacity: .12;
  transform: rotate(-15deg);
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer__brand {
  margin-bottom: 1.5rem;
}

.footer__logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__title {
  color: var(--lime);
  font-weight: 800;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.footer__links a i {
  font-size: 1.1rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer__copyright,
.footer__credits {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer__credits-link {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer__credits-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Legacy footer support */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.site-footer h6 {
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 1.2rem;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .92rem;
  display: inline-block;
  padding: .25rem 0;
  transition: var(--transition);
}
.site-footer a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}
.footer-brand .brand__logo {
  /* A logó sötét háttér felett invertálva (a fekete elemei világossá válnak) */
}
.footer-brand .brand { color: var(--paper) !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.social-links {
  display: flex; gap: .6rem;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: var(--paper);
}
.social-links a:hover {
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-3px);
}

/* Responsive footer */
@media (max-width: 767.98px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer__logo {
    height: 32px;
  }

  .footer__title {
    font-size: 0.85rem;
    margin-top: 1.5rem;
  }

  .footer__bottom {
    text-align: center;
  }

  .footer__copyright,
  .footer__credits {
    font-size: 0.85rem;
  }
}

/* ── Animációk ─────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(215,252,0,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(215,252,0,.15); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
  50%      { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
}

.animate-fade-up {
  animation: fadeInUp .7s cubic-bezier(.4,0,.2,1) both;
  will-change: auto;
}

.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }

/* ── Reszponzív finomhangolás ─────────────────────── */
@media (max-width: 991.98px) {
  .hero { padding: 7rem 0 4rem; }
  .hero-art { min-height: 360px; margin-top: 2rem; }
  .cta-band { padding: 2rem; }
  .newsletter-form { padding: 1.5rem; }
}

@media (max-width: 575.98px) {
  section { padding: 3.5rem 0; }
  .hero-art__card { font-size: .8rem; padding: .7rem .9rem; }
  .stat-card__num { font-size: 2rem; }
  .marquee-track { font-size: .85rem; gap: 1.8rem; }
}

/* ── Mobile Overflow Fix ──────────────────────────── */
/* Prevent horizontal scroll on mobile devices */
.container {
  overflow-x: clip;
}

.container-fluid {
  overflow-x: clip;
  max-width: 100%;
}

.row {
  overflow-x: clip;
}

/* Ensure all sections fit within viewport */
section {
  overflow-x: clip;
  max-width: 100vw;
}

main {
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}


/* Fix for elements that might overflow on mobile */
@media (max-width: 767.98px) {
  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Container padding adjustment for mobile */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Hero content adjustments */
  .hero__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Hero stats wrap properly */
  .hero__stats {
    padding: 0 1rem;
  }

  /* Footer adjustments */
  .footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Newsletter form full width on mobile */
  .newsletter-form {
    padding: 1.2rem;
  }

  /* Situation cards proper spacing */
  .situation-card {
    padding: 1.5rem;
  }

  /* Stat cards (3000+, 50+, 4.9) – col-4 narrow */
  .situation-card--stat {
    padding: 0.75rem 0.5rem;
  }
  .situation-card--stat h3 {
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .situation-card--stat p {
    font-size: 0.72rem;
  }

  /* Event cards fit properly */
  .event-card {
    max-width: 100%;
  }

  /* Testimonial cards */
  .testimonial-card {
    padding: 1.2rem;
  }

  /* Partner cards */
  .partner-card {
    padding: 1.2rem;
  }

  /* FAQ items */
  .faq-item {
    margin-bottom: 0.6rem;
  }

  .faq-question {
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
  }

  /* Step cards */
  .step-card {
    padding: 1.5rem 1.2rem;
  }

  /* Video card adjustments */
  .video-card {
    margin-bottom: 1rem;
  }

  /* Section titles and text wrapping */
  .section-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .section-sub {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Prevent text overflow */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Hero title adjustments */
  .hero__title-video {
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 0.5rem;
  }

  .hero__subtitle-video {
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 0.5rem;
  }

  /* Button adjustments */
  .hero-cta-video .btn {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Marquee adjustments */
  .marquee {
    overflow-x: hidden;
  }

  .marquee-track {
    overflow-x: visible;
  }

  /* Event photos section */
  .event-photo-card__content {
    bottom: 1rem;
    left: 1rem;
  }

  .event-photo-card__icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .event-photo-card__title {
    font-size: 0.9rem;
  }

  .event-photo-card__title::after {
    height: 2px;
  }
}

/* Extra small devices */
@media (max-width: 374.98px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero__title-video {
    font-size: 2rem;
  }

  .hero__subtitle-video {
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* ── Global overflow prevention ─────────────────────── */
html,
body {
  max-width: 100vw;
  position: relative;
}

/* Prevent content from causing horizontal scroll */
img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

/* Ensure tables are responsive */
table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* Touch action for better mobile experience */
@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: transparent;
  }

  a,
  button,
  .btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}

