/* =============================================
   SZELFVIKÉP - MAIN STYLESHEET
   Projekt: Szelfvikép Weboldal
   Verzió: 1.0
   Utolsó frissítés: 2024.11.28
   ============================================= */

/* ========== 1. CSS RESET & NORMALIZE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ========== 2. CSS VÁLTOZÓK (:root) ========== */
:root {
  /* Főszínek */
  --color-primary: #f44d84; /* Pink */
  --color-secondary: #56d9ef; /* Cyan */
  --color-accent: #ffc107; /* Sárga - CSAK linkek! */

  /* Alap színek */
  --color-dark: #1a1a2e; /* Sötét márka */
  --color-dark-deep: #141414; /* Mélyebb fekete */
  --color-dark-card: #252538; /* Sötét card háttér */
  --color-dark-section: #1e1e2f; /* Sötét szekció háttér */
  --color-white: #fcfcfc; /* Fehér */
  --color-grey-light: #e8e8f0; /* Világos szürke */
  --color-grey-medium: #a0a0b8; /* Közepes szürke */

  /* Szöveg */
  --color-text: #1a1a2e;
  --color-text-light: #6c757d;
  --color-text-white: #fcfcfc;
  --color-text-grey: #a0a0b8;

  /* Hover */
  --color-primary-hover: #e03670;
  --color-secondary-hover: #3ec9e0;
  --color-dark-hover: #2a2a3e;

  /* Háttér */
  --bg-white: #fcfcfc;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a2e;
  --bg-dark-section: #1e1e2f;
  --bg-dark-card: #252538;

  /* Árnyékok */
  --shadow-sm: 0 2px 4px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 4px 8px rgba(26, 26, 46, 0.12);
  --shadow-lg: 0 8px 16px rgba(26, 26, 46, 0.16);
  --shadow-pink: 0 4px 12px rgba(244, 77, 132, 0.3);
  --shadow-cyan: 0 4px 12px rgba(86, 217, 239, 0.3);
  --shadow-dark: 0 4px 12px rgba(26, 26, 46, 0.4);

  /* Tipográfia */
  --font-primary:
    "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-secondary: "Georgia", serif;

  /* Méretek */
  --container-width: 1200px;
  --section-padding: 100px; /* Szekciók közötti távolság */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Átmenetek */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========== 3. GLOBÁLIS STÍLUSOK ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section közös stílusok */
section {
  padding: var(--section-padding) 0;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  position: relative;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Linkek globális stílus - Sárga */
a:not(.btn):not(.nav__link):not(.footer__logo):not(.footer__social-link) {
  color: var(--color-accent);
}

a:not(.btn):not(.nav__link):not(.footer__logo):not(.footer__social-link):hover {
  text-decoration: underline;
}

/* ========== 4. KOMPONENSEK ========== */

/* ----- Gombok ----- */
/* ----- Gombok ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #e03670 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(244, 77, 132, 0.4);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(244, 77, 132, 0.5);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn--large {
  padding: 20px 44px;
  font-size: 1.125rem;
}

/* ----- Kártyák ----- */
.card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.08);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(26, 26, 46, 0.12);
}

/* ========== 5. HEADER & NAVIGÁCIÓ ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.06);
  z-index: 1000;
  transition: all var(--transition);
}

.header.header--scrolled {
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.12);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 50px;
  width: auto;
}

.nav__menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  position: relative;
  transition: all var(--transition);
  padding: 8px 0;
}

.nav__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: transform var(--transition);
  opacity: 0;
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link:hover::before,
.nav__link--active::before {
  transform: translateX(-50%) scaleX(1);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: translateY(-50%) translateX(-150%) scale(1);
  opacity: 1;
}

.nav__link--active {
  color: var(--color-primary);
}

/* Language Switcher */
.nav__item--lang {
  display: flex;
  align-items: center;
  border-bottom: none !important;
}

.lang-switch {
  position: relative;
  display: flex;
  background: var(--bg-light);
  border-radius: 30px;
  padding: 4px;
  gap: 4px;
}

.lang-switch__btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
  background: transparent;
  border: none;
  outline: none;
  border-radius: 26px;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-switch__btn:focus {
  outline: none;
  border: none;
}

.lang-switch__flag {
  font-size: 1.125rem;
  line-height: 1;
}

.lang-switch__text {
  font-family: var(--font-primary);
  font-weight: 700;
}

.lang-switch__btn:hover {
  color: var(--color-dark);
}

.lang-switch__btn--active {
  color: var(--color-white);
}

.lang-switch__slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 26px;
  transition: transform var(--transition);
  box-shadow: 0 2px 8px rgba(244, 77, 132, 0.3);
  z-index: 1;
}

/* Slider pozíció - második gomb aktív */
.lang-switch[data-active="en"] .lang-switch__slider {
  transform: translateX(calc(100% + 4px));
}

/* Régi nav__lang wrapper eltávolítása */
.nav__lang {
  display: none;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== 6. HERO SZEKCIÓ ========== */
.hero {
  position: relative;
  height: 95vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 90px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transition:
    opacity 1.5s ease-in-out,
    transform 20s ease-out;
  transform: scale(1);
}
.hero__bg.zoom {
  transform: scale(1.1);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 24, 0.8) 0%,
    rgba(97, 34, 255, 0.259) 100%
  );
  z-index: -1;
}

.hero__content {
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  animation: fadeInUp 1s ease;
  z-index: 2;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero secondary gomb fehér outline */
.hero .btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: none;
}

.hero .btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

/* ========== 7. SERVICE SECTION ========== */
.service {
  background: var(--bg-dark);
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service__card {
  background: var(--bg-dark-card);
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.08);
  border: 1px solid rgba(26, 26, 46, 0.05);
  transition: all var(--transition);
  position: relative;
}

.service__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.12);
  border-color: rgba(244, 77, 132, 0.2);
}

.service__card--featured {
  border: 2px solid var(--color-primary);
}

.service__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 50%;
  color: var(--color-white);
}

.service__icon svg,
.service__icon i {
  width: 40px;
  height: 40px;
  stroke-width: 2;
}
.service .container .section__header .section__title {
  color: var(--color-primary);
}
.service__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.service__card-text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ========== 8. WHY US SECTION ========== */
.why-us {
  background: var(--bg-white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us__image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.15);
}

/* ========== 8. ABOUT SECTION (RÓLUNK) ========== */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Side - Image */
.about__image-wrapper {
  position: relative;
}

.about__image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.15);
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(252, 252, 252, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.1);
}

.about__image-badge i {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.about__image-badge span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* Right Side - Content */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* Stats with Icons */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about__stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition);
}

.about__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(26, 26, 46, 0.08);
}

.about__stat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: var(--border-radius-lg);
  flex-shrink: 0;
}

.about__stat-icon i {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.about__stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
}

/* Mission Statement */
.about__mission {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(
    135deg,
    rgba(244, 77, 132, 0.08),
    rgba(86, 217, 239, 0.08)
  );
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-primary);
}

.about__mission i {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about__mission p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
}

/* Régi why-us maradványok eltávolítása */

.why-us__stat {
  text-align: center;
}

.why-us__stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.why-us__stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ========== 9. REFERENCE SECTION ========== */
.reference {
  padding: var(--section-padding) 0;
  background: var(--bg-dark-section);
}

.reference .section__title {
  color: var(--color-white);
}

.reference .section__subtitle {
  color: var(--color-text-grey);
}

.reference__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.reference__card {
  background: var(--bg-dark-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.reference__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(244, 77, 132, 0.4);
}

.reference__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.reference__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.reference__card:hover .reference__image img {
  transform: scale(1.08);
}

.reference__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(26, 26, 46, 0.9) 100%
  );
}

.reference__content {
  padding: 28px;
  background: var(--bg-dark-card);
}

.reference__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.reference__meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reference__meta span {
  display: inline-flex;
  align-items: center;
}

.reference__story {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-grey);
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--color-secondary);
}

.reference__cta {
  text-align: center;
}

/* ========== 10. CTA SECTION ========== */
.cta {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  color: var(--color-white);
  text-align: center;
  padding: 100px 0;
}

.cta__content {
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta__text {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn--primary {
  background: var(--bg-white);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta .btn--primary:hover {
  background: var(--color-white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.cta .btn--secondary {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.cta .btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* ========== 11. FOOTER ========== */
.footer {
  background: var(--bg-dark);
  color: var(--color-text-white);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.9375rem;
  color: rgba(252, 252, 252, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(252, 252, 252, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: var(--color-secondary) !important;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-primary) !important;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(252, 252, 252, 0.8);
}

.footer__contact svg,
.footer__contact i {
  color: var(--color-secondary) !important;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.footer__contact a {
  color: var(--color-secondary) !important;
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--color-primary) !important;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(252, 252, 252, 0.1);
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(252, 252, 252, 0.6);
}

.footer__cookie-settings {
  font-size: 0.875rem;
  color: rgba(252, 252, 252, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.footer__cookie-settings:hover {
  color: var(--color-secondary);
}

/* ========== 12. COOKIE BANNER (cc- prefix!) ========== */
/* Cookie consent kód a cookie-consent.js fájlban lesz */

/* ========== 13. UTILITY OSZTÁLYOK ========== */
.text-center {
  text-align: center;
}

/* Dark section helpers */
.section--dark {
  background: var(--bg-dark-section);
  color: var(--color-white);
}

.section--dark .section__title {
  color: var(--color-white);
}

.section--dark .section__subtitle {
  color: var(--color-text-grey);
}

/* Spacing */
.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}

.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}

.pt-1 {
  padding-top: 10px;
}
.pt-2 {
  padding-top: 20px;
}
.pt-3 {
  padding-top: 30px;
}
.pt-4 {
  padding-top: 40px;
}

.pb-1 {
  padding-bottom: 10px;
}
.pb-2 {
  padding-bottom: 20px;
}
.pb-3 {
  padding-bottom: 30px;
}
.pb-4 {
  padding-bottom: 40px;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ========== 14. RESPONSIVE (Media Queries) ========== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .section__title {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 60px 30px;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition);
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav__menu.active {
    left: 0;
  }

  /* Mobil menüpont stílusok */
  .nav__item {
    width: 100%;
    border-bottom: 1px solid var(--bg-light);
  }

  .nav__item:last-child {
    border-bottom: none;
  }

  /* Nyelv váltó speciális stílus mobilon */
  .nav__item--lang {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
    border-bottom: none !important;
    justify-content: center;
    width: 100%;
  }

  .nav__item--lang .lang-switch {
    width: 100%;
    max-width: 240px;
    padding: 6px;
    gap: 6px;
  }

  .nav__item--lang .lang-switch__btn {
    padding: 12px 20px;
    font-size: 1rem;
    flex: 1;
    justify-content: center;
  }

  .nav__item--lang .lang-switch__slider {
    width: calc(50% - 6px);
  }

  .nav__link {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 20px 10px;
    color: var(--color-dark);
    width: 100%;
  }

  .nav__link::before,
  .nav__link::after {
    display: none;
  }

  .nav__link--active {
    color: var(--color-primary);
    background: rgba(244, 77, 132, 0.05);
    border-left: 4px solid var(--color-primary);
    padding-left: 16px;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .service__grid {
    grid-template-columns: 1fr;
  }

  /* About Section Responsive */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about__stat {
    padding: 16px;
  }

  .about__stat-icon {
    width: 40px;
    height: 40px;
  }

  .about__stat-icon i {
    width: 20px;
    height: 20px;
  }

  .about__stat-number {
    font-size: 1.5rem;
  }

  .about__mission {
    padding: 20px;
    gap: 12px;
  }

  .why-us__title {
    font-size: 2rem;
  }

  .why-us__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reference__grid {
    grid-template-columns: 1fr;
  }

  .cta__title {
    font-size: 2rem;
  }

  .cta__text {
    font-size: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .section__title {
    font-size: 1.75rem;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }

  .btn--large {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth transitions */
* {
  transition:
    background-color var(--transition),
    color var(--transition);
}

/* Accessibility - Focus states */
a:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .nav,
  .footer,
  .cta,
  .btn {
    display: none;
  }
}

/* ========== VÉG ========== */
/* =============================================
   CSOMAGOK OLDAL (PACKAGES PAGE) - CSS STÍLUSOK
   Ezt a blokkot add hozzá a style.css végéhez!
   ============================================= */

/* ========== PACKAGES HERO SECTION ========== */
/* Flash Overlay - Global */
.flash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.flash-overlay.active {
  opacity: 1;
  animation: flash 0.5s ease-out;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Card Flash Animáció (hover) */
@keyframes cardFlash {
  0% {
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
  }
  50% {
    box-shadow:
      0 0 40px rgba(255, 255, 255, 0.6),
      0 4px 20px rgba(26, 26, 46, 0.08);
  }
  100% {
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
  }
}

.packages-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 140px 0 80px;
  overflow: hidden;
}

.packages-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.packages-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(244, 77, 132, 0.9) 0%,
    rgba(86, 217, 239, 0.9) 100%
  );
}

.packages-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.packages-hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

.packages-hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-white);
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== PROPS ILLUSZTRÁCIÓK (FLOATING) ========== */
.props-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.prop {
  position: absolute;
  opacity: 0.12;
  color: var(--color-white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  animation: float 8s ease-in-out infinite;
}

/* Prop méretek */
.prop--glasses {
  width: 80px;
  height: 32px;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.prop--mustache {
  width: 70px;
  height: 21px;
  top: 60%;
  right: 10%;
  animation-delay: 1.5s;
}

.prop--hat {
  width: 60px;
  height: 36px;
  top: 25%;
  right: 15%;
  animation-delay: 3s;
}

.prop--heart {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 12%;
  animation-delay: 4.5s;
  opacity: 0.1;
}

.prop--star {
  width: 45px;
  height: 45px;
  top: 70%;
  left: 20%;
  animation-delay: 2s;
  opacity: 0.08;
}

.prop--camera {
  width: 65px;
  height: 52px;
  bottom: 30%;
  right: 8%;
  animation-delay: 5.5s;
}

/* Floating Animáció */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(3deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
  75% {
    transform: translateY(-20px) rotate(4deg);
  }
}

/* Tablet & Mobile: Props elrejtése vagy kisebb */
@media (max-width: 992px) {
  .prop {
    opacity: 0.08;
  }

  .prop--glasses,
  .prop--hat {
    width: 60px;
  }

  .prop--mustache,
  .prop--camera {
    width: 55px;
  }

  .prop--heart,
  .prop--star {
    display: none; /* Mobilon kevesebb prop */
  }
}

@media (max-width: 768px) {
  .props-decoration {
    display: none; /* Kis mobilon teljesen elrejtés */
  }
}

/* ========== PACKAGES GRID SECTION ========== */
.packages {
  padding: 80px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* Party Emoji Float-ok - Packages Grid */
.party-emojis {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.party-emoji {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.25;
  filter: blur(0.5px);
  animation: partyFloat 10s ease-in-out infinite;
  user-select: none;
}

/* Packages Grid pozíciók */
.party-emoji--1 {
  /* 🎉 */
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.party-emoji--2 {
  /* 🎊 */
  top: 15%;
  right: 8%;
  animation-delay: 1.5s;
}

.party-emoji--3 {
  /* 🎈 */
  top: 35%;
  left: 3%;
  animation-delay: 3s;
  font-size: 2rem;
}

.party-emoji--4 {
  /* ✨ */
  top: 45%;
  right: 5%;
  animation-delay: 4.5s;
  font-size: 2rem;
}

.party-emoji--5 {
  /* 🥳 */
  bottom: 25%;
  left: 8%;
  animation-delay: 2s;
}

.party-emoji--6 {
  /* 🎁 */
  bottom: 30%;
  right: 10%;
  animation-delay: 5.5s;
}

.party-emoji--7 {
  /* 🎵 */
  top: 60%;
  left: 12%;
  animation-delay: 3.5s;
  font-size: 2rem;
  opacity: 0.2;
}

.party-emoji--8 {
  /* 💫 */
  bottom: 15%;
  right: 15%;
  animation-delay: 6s;
  font-size: 2rem;
  opacity: 0.2;
}

/* Party Float Animáció */
@keyframes partyFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(0.95);
  }
  75% {
    transform: translateY(-25px) rotate(7deg) scale(1.05);
  }
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2; /* Emojik fölött */
}

/* ========== PACKAGE CARD ========== */
.package-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.15);
  border-color: var(--color-secondary);
}

/* Featured Package (Prémium) */
.package-card--featured {
  background: linear-gradient(
    135deg,
    rgba(244, 77, 132, 0.03),
    rgba(86, 217, 239, 0.03)
  );
  border: 2px solid var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(244, 77, 132, 0.2);
  margin-top: 28px; /* JAVÍTVA: Extra margin a badge-nek */
}

.package-card--featured:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 16px 48px rgba(244, 77, 132, 0.3);
}

/* Featured Badge (Top) */
.package-card__featured-badge {
  position: absolute;
  top: -20px; /* JAVÍTVA: Feljebb téve, hogy ne lógjon bele a tartalomba */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: var(--color-white);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(244, 77, 132, 0.4);
  white-space: nowrap;
}

.package-card__featured-badge i {
  width: 18px;
  height: 18px;
}

/* Card Header */
.package-card__header {
  text-align: center;
  margin-bottom: 32px;
}

/* Badge (Népszerű, VIP) */
.package-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.package-card__badge i {
  width: 16px;
  height: 16px;
}

.package-card__badge--basic {
  background: rgba(86, 217, 239, 0.12);
  color: var(--color-secondary);
}

.package-card__badge--luxury {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.15),
    rgba(244, 77, 132, 0.15)
  );
  color: var(--color-primary);
}

/* Package Name */
.package-card__name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

/* Tagline */
.package-card__tagline {
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Price Section */
.package-card__price {
  text-align: center;
  padding: 28px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--color-grey-light);
  border-bottom: 1px solid var(--color-grey-light);
}

.package-card__price-amount {
  display: block;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.package-card--featured .package-card__price-amount {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-card__duration {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  font-weight: 600;
}

/* Features List */
.package-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.package-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}

.package-card__feature i {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-card--featured .package-card__feature i {
  color: var(--color-primary);
}

/* CTA Button (Full Width) */
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ========== PACKAGES INFO SECTION ========== */
.packages-info {
  padding: 60px 0;
  background: var(--bg-light);
}

.packages-info__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.packages-info__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 32px;
}

.packages-info__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.packages-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  text-align: left;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.06);
  transition: all var(--transition);
}

.packages-info__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(26, 26, 46, 0.1);
}

.packages-info__item i {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.packages-info__item p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* ========== EXTRAS & FAQ SECTION (2 BOX) ========== */
.extras-faq {
  padding: 80px 0;
  background: var(--bg-white);
}

.extras-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* Közös Box Stílus */
.extras-faq__box {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.extras-faq__box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
}

/* Instax Mini Box (Bal oldal) */
.extras-faq__box--instax {
  background: linear-gradient(
    135deg,
    rgba(244, 77, 132, 0.05),
    rgba(86, 217, 239, 0.05)
  );
  border-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.extras-faq__box--instax::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(244, 77, 132, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* FAQ Box (Jobb oldal) */
.extras-faq__box--faq {
  background: var(--bg-light);
  border-color: var(--color-secondary);
}

.extras-faq__box--faq:hover {
  border-color: var(--color-primary);
}

/* Ikon */
.extras-faq__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 50%;
  color: var(--color-white);
  flex-shrink: 0;
}

.extras-faq__icon i {
  width: 32px;
  height: 32px;
}

/* Cím */
.extras-faq__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.3;
}

/* Szöveg */
.extras-faq__text {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
  max-width: 400px;
}

/* Gombok */
.extras-faq__btn {
  margin-top: 8px;
}

/* ========== INSTAX MODAL ========== */
.instax-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.instax-modal.active {
  display: flex;
}

.instax-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.instax-modal__content {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto; /* Ha mégis túl hosszú lenne */
  padding: 32px 28px; /* 40px/36px → 32px/28px (kisebb) */
  z-index: 2;
  animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.instax-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-dark);
  z-index: 10;
}

.instax-modal__close:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(90deg);
}

.instax-modal__close i {
  width: 24px;
  height: 24px;
}

.instax-modal__header {
  text-align: center;
  margin-bottom: 20px; /* 32px → 20px */
}

.instax-modal__title {
  font-size: 1.5rem; /* 2rem → 1.5rem (25% kisebb) */
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px; /* 12px → 8px */
}

.instax-modal__subtitle {
  font-size: 0.9375rem; /* 1.125rem → 0.9375rem (kisebb) */
  color: var(--color-text-light);
}

/* Video Wrapper */
.instax-modal__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 20px; /* 32px → 20px */
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.15);
}

.instax-modal__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Interaktív Leírás */
.instax-modal__description {
  display: flex;
  flex-direction: column;
  gap: 16px; /* 24px → 16px */
}

.instax-modal__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px; /* 16px → 12px */
  padding: 14px; /* 20px → 14px */
  background: var(--bg-light);
  border-radius: var(--border-radius);
  transition: all var(--transition);
}

.instax-modal__feature:hover {
  background: linear-gradient(
    135deg,
    rgba(244, 77, 132, 0.08),
    rgba(86, 217, 239, 0.08)
  );
  transform: translateX(8px);
}

.instax-modal__feature-icon {
  width: 40px; /* 48px → 40px */
  height: 40px; /* 48px → 40px */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: var(--border-radius);
  color: var(--color-white);
  flex-shrink: 0;
}

.instax-modal__feature-icon i {
  width: 20px; /* 24px → 20px */
  height: 20px; /* 24px → 20px */
}

.instax-modal__feature-content h4 {
  font-size: 0.9375rem; /* 1.125rem → 0.9375rem */
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px; /* 8px → 4px */
}

.instax-modal__feature-content p {
  font-size: 0.875rem; /* 0.9375rem → 0.875rem */
  color: var(--color-text-light);
  line-height: 1.5; /* 1.6 → 1.5 */
  margin: 0;
}

/* CTA Gomb */
.instax-modal__cta {
  margin-top: 20px;
  text-align: center;
}

.instax-modal__cta .btn {
  min-width: 280px;
}

/* ========== TESTIMONIALS CAROUSEL (DARK MODE) ========== */
.testimonials {
  padding: 100px 0;
  background: var(--bg-dark-section);
  position: relative;
  overflow: hidden;
}

.testimonials .section__title {
  color: var(--color-white);
}

.testimonials .section__subtitle {
  color: var(--color-text-grey);
}

/* Carousel Container */
.testimonials__carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Track (slider) */
.testimonials__track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Testimonial Card - TÉGLALAP ALAKÚ (szélesebb) */
.testimonial-card {
  flex: 0 0 calc(70% - 15px); /* Desktop: 70% szélesség (1 full + fél következő) */
  min-width: 500px; /* Minimum szélesség */
  background: var(--bg-dark-card);
  border-radius: var(--border-radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 77, 132, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Stars */
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: #ffc107;
}

.testimonial-card__stars i {
  width: 20px;
  height: 20px;
}

/* Text */
.testimonial-card__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-grey);
  font-style: italic;
  flex-grow: 1;
}

/* Author */
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.testimonial-card__event {
  font-size: 0.875rem;
  color: var(--color-text-grey);
  margin: 0;
}

/* Navigation Buttons */
.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
  color: var(--color-white);
}

.testimonials__nav:hover:not(:disabled) {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.testimonials__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonials__nav--prev {
  left: 0;
}

.testimonials__nav--next {
  right: 0;
}

.testimonials__nav i {
  width: 24px;
  height: 24px;
}

/* Dots Navigation */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--color-primary);
  width: 32px;
  border-radius: 6px;
}

/* ========== RESPONSIVE - TESTIMONIALS ========== */

/* Tablet (1 full card) */
@media (max-width: 992px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonial-card {
    flex: 0 0 calc(85% - 15px); /* Tablet: 85% (1 full + kevés következő) */
    min-width: 400px;
  }

  .testimonials__carousel {
    padding: 0 50px;
  }

  .testimonials__nav {
    width: 42px;
    height: 42px;
  }
}

/* Mobile (1 full card, no partial) */
@media (max-width: 768px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonial-card {
    flex: 0 0 100%; /* Mobile: teljes szélesség */
    min-width: unset;
  }

  .testimonials__carousel {
    padding: 0 45px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-card__text {
    font-size: 1rem;
  }

  .testimonial-card__avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .testimonials__nav {
    width: 40px;
    height: 40px;
  }

  .testimonials__nav i {
    width: 20px;
    height: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .testimonials__carousel {
    padding: 0 40px;
  }

  .testimonials__nav {
    width: 36px;
    height: 36px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-card__stars i {
    width: 18px;
    height: 18px;
  }
}

/* ========== RESPONSIVE - EXTRAS & FAQ ========== */

/* Tablet */
@media (max-width: 992px) {
  .extras-faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .instax-modal__content {
    padding: 28px 24px; /* 40px/32px → 28px/24px */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .extras-faq {
    padding: 60px 0;
  }

  .extras-faq__box {
    padding: 36px 28px;
  }

  .extras-faq__title {
    font-size: 1.5rem;
  }

  .extras-faq__text {
    font-size: 1rem;
  }

  .instax-modal__content {
    padding: 24px 20px; /* 32px/24px → 24px/20px */
  }

  .instax-modal__title {
    font-size: 1.375rem; /* 1.75rem → 1.375rem */
  }

  .instax-modal__subtitle {
    font-size: 0.875rem; /* 1rem → 0.875rem */
  }

  .instax-modal__feature {
    padding: 12px; /* 16px → 12px */
  }

  .instax-modal__feature-icon {
    width: 36px; /* 40px → 36px */
    height: 36px; /* 40px → 36px */
  }

  .instax-modal__feature-content h4 {
    font-size: 0.875rem; /* 1rem → 0.875rem */
  }

  .instax-modal__feature-content p {
    font-size: 0.8125rem; /* 0.875rem → 0.8125rem */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .extras-faq__box {
    padding: 28px 20px;
  }

  .extras-faq__icon {
    width: 56px;
    height: 56px;
  }

  .extras-faq__icon i {
    width: 28px;
    height: 28px;
  }

  .instax-modal__content {
    padding: 20px 16px; /* 24px/20px → 20px/16px */
  }

  .instax-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .instax-modal__cta .btn {
    min-width: 100%; /* Teljes szélesség mobilon */
  }
}

/* ========== RESPONSIVE - PACKAGES ========== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .packages__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 500px;
    margin: 0 auto;
  }

  .package-card--featured {
    transform: scale(1);
    order: -1;
  }

  .package-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
  }

  .packages-hero__title {
    font-size: 2.25rem;
  }

  .packages-hero__subtitle {
    font-size: 1.125rem;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .packages-hero {
    padding: 120px 0 60px;
    min-height: 350px;
  }

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

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

  .packages {
    padding: 60px 0;
  }

  .packages__grid {
    gap: 40px;
  }

  .package-card {
    padding: 32px 24px;
  }

  .package-card__name {
    font-size: 1.5rem;
  }

  .package-card__price-amount {
    font-size: 2.25rem;
  }

  .package-card__feature {
    font-size: 0.875rem;
  }

  .packages-info {
    padding: 50px 0;
  }

  .packages-info__title {
    font-size: 1.5rem;
  }

  .packages-info__item {
    padding: 20px;
    font-size: 0.9375rem;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .packages-hero__title {
    font-size: 1.75rem;
  }

  .packages-hero__subtitle {
    font-size: 0.9375rem;
  }

  .package-card__featured-badge {
    font-size: 0.75rem;
    padding: 6px 18px;
  }

  .package-card__price-amount {
    font-size: 2rem;
  }

  .package-card__feature {
    gap: 10px;
  }

  .package-card__feature i {
    width: 18px;
    height: 18px;
  }
}

/* ========== PARTY EMOJIS - CTA SECTION ========== */
/* CTA Section base (ha nincs már a style.css-ben) */
.cta {
  position: relative;
  overflow: hidden;
}

/* CTA party emojik (kevesebb, de látványosabb) */
.party-emojis--cta .party-emoji {
  font-size: 3rem; /* Nagyobb */
  opacity: 0.3; /* Erősebb */
  filter: blur(0.3px);
}

.party-emoji--cta-1 {
  /* 🎉 */
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.party-emoji--cta-2 {
  /* 🎊 */
  top: 20%;
  right: 12%;
  animation-delay: 2s;
}

.party-emoji--cta-3 {
  /* 🎈 */
  bottom: 25%;
  left: 8%;
  animation-delay: 4s;
  font-size: 2.5rem;
}

.party-emoji--cta-4 {
  /* ✨ */
  top: 50%;
  right: 8%;
  animation-delay: 1s;
  font-size: 2.5rem;
}

.party-emoji--cta-5 {
  /* 🥳 */
  bottom: 30%;
  right: 15%;
  animation-delay: 3s;
}

.party-emoji--cta-6 {
  /* 💫 */
  top: 60%;
  left: 15%;
  animation-delay: 5s;
  font-size: 2.5rem;
}

/* Responsive - Party Emojis */
@media (max-width: 992px) {
  .party-emoji {
    font-size: 2rem;
    opacity: 0.2;
  }

  .party-emojis--cta .party-emoji {
    font-size: 2.5rem;
    opacity: 0.25;
  }
}

@media (max-width: 768px) {
  .party-emoji {
    font-size: 1.5rem;
    opacity: 0.15;
  }

  .party-emojis--cta .party-emoji {
    font-size: 2rem;
    opacity: 0.2;
  }

  /* Néhány emoji elrejtése mobilon */
  .party-emoji--7,
  .party-emoji--8,
  .party-emoji--cta-4,
  .party-emoji--cta-6 {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Még kevesebb emoji kis mobilon */
  .party-emoji--3,
  .party-emoji--5,
  .party-emoji--cta-3,
  .party-emoji--cta-5 {
    display: none;
  }
}

/* ========== PARTY EMOJIS - ABOUT SECTION (RÓLUNK) ========== */

/* About Section base */
.about {
  position: relative;
  overflow: hidden;
}

/* About party emojik (8 emoji, vidám vibe) */
.party-emojis--about .party-emoji {
  font-size: 2.5rem; /* Ugyanaz mint Packages Grid */
  opacity: 0.25;
  filter: blur(0.5px);
}

/* About Section pozíciók */
.party-emoji--about-1 {
  /* 🎉 */
  top: 8%;
  left: 4%;
  animation-delay: 0s;
}

.party-emoji--about-2 {
  /* 🎊 */
  top: 18%;
  right: 6%;
  animation-delay: 1.5s;
}

.party-emoji--about-3 {
  /* 🎈 */
  top: 40%;
  left: 2%;
  animation-delay: 3s;
  font-size: 2rem;
}

.party-emoji--about-4 {
  /* ✨ */
  top: 50%;
  right: 4%;
  animation-delay: 4.5s;
  font-size: 2rem;
}

.party-emoji--about-5 {
  /* 🥳 */
  bottom: 20%;
  left: 6%;
  animation-delay: 2s;
}

.party-emoji--about-6 {
  /* 🎁 */
  bottom: 25%;
  right: 8%;
  animation-delay: 5.5s;
}

.party-emoji--about-7 {
  /* 🎵 */
  top: 65%;
  left: 10%;
  animation-delay: 3.5s;
  font-size: 2rem;
  opacity: 0.2;
}

.party-emoji--about-8 {
  /* 💫 */
  bottom: 12%;
  right: 12%;
  animation-delay: 6s;
  font-size: 2rem;
  opacity: 0.2;
}

/* Responsive - About Section */
@media (max-width: 992px) {
  .party-emojis--about .party-emoji {
    font-size: 2rem;
    opacity: 0.2;
  }
}

@media (max-width: 768px) {
  .party-emojis--about .party-emoji {
    font-size: 1.5rem;
    opacity: 0.18;
  }

  /* ✅ Mobilon MIND a 8 emoji látszik! */
}

@media (max-width: 480px) {
  .party-emojis--about .party-emoji {
    font-size: 1.3rem;
    opacity: 0.15;
  }

  /* Kis mobilon csak 1 emoji tűnik el */
  .party-emoji--about-8 {
    display: none; /* 💫 - 7 emoji marad */
  }
}

@media (max-width: 380px) {
  /* Nagyon kis mobilon még 1 emoji eltűnik */
  .party-emoji--about-7 {
    display: none; /* 🎵 - 6 emoji marad */
  }
}

/* =============================================
   GALÉRIA OLDAL (GALLERY PAGE) - CSS STÍLUSOK
   Ezt add hozzá a style.css végéhez!
   ============================================= */

/* ========== GALLERY HERO SECTION ========== */
.gallery-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 140px 0 80px;
  overflow: hidden;
  margin-top: 90px;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.gallery-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(244, 77, 132, 0.9) 0%,
    rgba(86, 217, 239, 0.9) 100%
  );
}

.gallery-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

.gallery-hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-white);
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== PARTY EMOJIS - GALLERY HERO ========== */
.party-emojis--gallery .party-emoji {
  font-size: 3rem;
  opacity: 0.3;
  filter: blur(0.3px);
}

.party-emoji--gallery-1 {
  /* 🎉 */
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.party-emoji--gallery-2 {
  /* 🎊 */
  top: 20%;
  right: 12%;
  animation-delay: 2s;
}

.party-emoji--gallery-3 {
  /* 🎈 */
  bottom: 25%;
  left: 8%;
  animation-delay: 4s;
  font-size: 2.5rem;
}

.party-emoji--gallery-4 {
  /* ✨ */
  top: 50%;
  right: 8%;
  animation-delay: 1s;
  font-size: 2.5rem;
}

.party-emoji--gallery-5 {
  /* 🥳 */
  bottom: 30%;
  right: 15%;
  animation-delay: 3s;
}

.party-emoji--gallery-6 {
  /* 🎁 */
  top: 60%;
  left: 15%;
  animation-delay: 5s;
  font-size: 2.5rem;
}

.party-emoji--gallery-7 {
  /* 💫 */
  top: 40%;
  left: 5%;
  animation-delay: 1.5s;
  font-size: 2.5rem;
}

.party-emoji--gallery-8 {
  /* 🎵 */
  bottom: 20%;
  right: 5%;
  animation-delay: 4.5s;
  font-size: 2.5rem;
}

/* =============================================
   GALÉRIA OLDAL (GALLERY PAGE) - CSS STÍLUSOK
   Ezt add hozzá a style.css végéhez!
   ============================================= */

/* ========== GALLERY HERO SECTION ========== */
.gallery-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 140px 80px;
  overflow: hidden;
  margin-top: 90px;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.gallery-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(244, 77, 132, 0.9) 0%,
    rgba(86, 217, 239, 0.9) 100%
  );
}

.gallery-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

.gallery-hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-white);
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== PARTY EMOJIS - GALLERY HERO ========== */
.party-emojis--gallery .party-emoji {
  font-size: 3rem;
  opacity: 0.3;
  filter: blur(0.3px);
}

.party-emoji--gallery-1 {
  /* 🎉 */
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.party-emoji--gallery-2 {
  /* 🎊 */
  top: 20%;
  right: 12%;
  animation-delay: 2s;
}

.party-emoji--gallery-3 {
  /* 🎈 */
  bottom: 25%;
  left: 8%;
  animation-delay: 4s;
  font-size: 2.5rem;
}

.party-emoji--gallery-4 {
  /* ✨ */
  top: 50%;
  right: 8%;
  animation-delay: 1s;
  font-size: 2.5rem;
}

.party-emoji--gallery-5 {
  /* 🥳 */
  bottom: 30%;
  right: 15%;
  animation-delay: 3s;
}

.party-emoji--gallery-6 {
  /* 🎁 */
  top: 60%;
  left: 15%;
  animation-delay: 5s;
  font-size: 2.5rem;
}

.party-emoji--gallery-7 {
  /* 💫 */
  top: 40%;
  left: 5%;
  animation-delay: 1.5s;
  font-size: 2.5rem;
}

.party-emoji--gallery-8 {
  /* 🎵 */
  bottom: 20%;
  right: 5%;
  animation-delay: 4.5s;
  font-size: 2.5rem;
}

/* ========== GALLERY SECTION ========== */
.gallery {
  padding: 80px 0;
  background: var(--bg-white);
}

/* Masonry Grid - FLEXBOX ALAPÚ (egyszerűbb, megbízhatóbb) */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

/* Gallery Item (Card) */
.gallery__item {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
  border: 1px solid rgba(26, 26, 46, 0.05);
  transition: all var(--transition);
  cursor: pointer;
  break-inside: avoid;
  position: relative;
  display: flex;
  flex-direction: column;
}

.gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.15);
  border-color: var(--color-secondary);
}

/* Gallery Image */
.gallery__image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover .gallery__image img {
  transform: scale(1.08);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(26, 26, 46, 0.3) 100%
  );
  transition: background var(--transition);
}

.gallery__item:hover .gallery__overlay {
  background: linear-gradient(
    to bottom,
    rgba(86, 217, 239, 0.1) 0%,
    rgba(244, 77, 132, 0.2) 100%
  );
}

/* Gallery Content */
.gallery__content {
  padding: 24px;
}

.gallery__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery__meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery__story {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-light);
  font-style: italic;
  border-left: 3px solid var(--color-secondary);
  padding-left: 12px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.96);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px; /* 20px → 40px (több padding felül-alul) */
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto; /* Ha mégis túl hosszú, legyen scroll */
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* 32px → 20px (kompaktabb) */
  margin: auto; /* Vertikális centrálás */
}

.lightbox__image {
  max-width: 100%;
  max-height: 55vh; /* 70vh → 55vh (kisebb kép) */
  border-radius: var(--border-radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  animation: lightboxImageIn 0.4s ease;
}

@keyframes lightboxImageIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox__info {
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
}

.lightbox__title {
  font-size: 1.5rem; /* 1.75rem → 1.5rem (kisebb cím) */
  font-weight: 700;
  margin-bottom: 8px; /* 12px → 8px */
  color: var(--color-white);
  line-height: 1.3;
}

.lightbox__meta {
  font-size: 0.9375rem; /* 1rem → 0.9375rem (15px) */
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 10px; /* 16px → 10px */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lightbox__story {
  font-size: 0.9375rem; /* 1.0625rem → 0.9375rem (15px) */
  line-height: 1.6; /* 1.7 → 1.6 */
  color: rgba(252, 252, 252, 0.9);
  font-style: italic;
}

/* Lightbox Controls */
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed; /* absolute → fixed (mindig látható) */
  background: rgba(252, 252, 252, 0.1);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(252, 252, 252, 0.2);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10001; /* 2 → 10001 (biztosan felül) */
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.lightbox__close i,
.lightbox__prev i,
.lightbox__next i {
  width: 28px;
  height: 28px;
}

.lightbox__close {
  top: 30px;
  right: 30px;
}

.lightbox__prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox__next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ========== RESPONSIVE - GALLERY ========== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .gallery-hero {
    padding: 120px 0 60px;
    min-height: 350px;
  }

  .gallery-hero__title {
    font-size: 2.25rem;
  }

  .gallery-hero__subtitle {
    font-size: 1.125rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
  }

  .party-emojis--gallery .party-emoji {
    font-size: 2.5rem;
    opacity: 0.25;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .gallery-hero {
    padding: 100px 0 50px;
    min-height: 300px;
  }

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

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

  .gallery {
    padding: 60px 0;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery__image {
    height: 220px;
  }

  .gallery__content {
    padding: 20px;
  }

  .gallery__name {
    font-size: 1.125rem;
  }

  .gallery__story {
    font-size: 0.875rem;
  }

  /* ========== LIGHTBOX MOBIL OPTIMALIZÁLÁS ========== */
  .lightbox {
    padding: 10px;
  }

  .lightbox__content {
    gap: 16px; /* 32px → 16px */
  }

  .lightbox__image {
    max-height: 50vh; /* 70vh → 50vh (kisebb kép) */
  }

  .lightbox__info {
    max-width: 100%;
    padding: 0 10px;
  }

  .lightbox__title {
    font-size: 1.125rem; /* 1.5rem → 1.125rem (25% kisebb) */
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .lightbox__meta {
    font-size: 0.8125rem; /* 0.9375rem → 0.8125rem */
    margin-bottom: 10px;
  }

  .lightbox__story {
    font-size: 0.875rem; /* 1rem → 0.875rem (14px) */
    line-height: 1.5;
    max-height: 20vh; /* Maximum magasság */
    overflow-y: auto; /* Scroll ha túl hosszú */
  }

  .lightbox__close,
  .lightbox__prev,
  .lightbox__next {
    width: 44px;
    height: 44px;
  }

  .lightbox__close i,
  .lightbox__prev i,
  .lightbox__next i {
    width: 24px;
    height: 24px;
  }

  .lightbox__close {
    top: 20px;
    right: 20px;
  }

  .lightbox__prev {
    left: 20px;
  }

  .lightbox__next {
    right: 20px;
  }

  .party-emojis--gallery .party-emoji {
    font-size: 2rem;
    opacity: 0.2;
  }

  /* Néhány emoji elrejtése mobilon */
  .party-emoji--gallery-7,
  .party-emoji--gallery-8 {
    display: none;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .gallery-hero__title {
    font-size: 1.75rem;
  }

  .gallery-hero__subtitle {
    font-size: 0.9375rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery__image {
    height: 260px;
  }

  .gallery__content {
    padding: 16px;
  }

  /* ========== LIGHTBOX EXTRA SMALL MOBIL ========== */
  .lightbox {
    padding: 5px;
  }

  .lightbox__content {
    gap: 12px; /* 16px → 12px */
  }

  .lightbox__image {
    max-height: 45vh; /* 50vh → 45vh (még kisebb) */
    border-radius: 8px; /* 12px → 8px */
  }

  .lightbox__info {
    padding: 0 5px;
  }

  .lightbox__title {
    font-size: 1rem; /* 1.125rem → 1rem (16px) */
    margin-bottom: 6px;
  }

  .lightbox__meta {
    font-size: 0.75rem; /* 0.8125rem → 0.75rem (12px) */
    margin-bottom: 8px;
  }

  .lightbox__story {
    font-size: 0.8125rem; /* 0.875rem → 0.8125rem (13px) */
    line-height: 1.4;
    max-height: 15vh; /* 20vh → 15vh */
  }

  .lightbox__close,
  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }

  .lightbox__close i,
  .lightbox__prev i,
  .lightbox__next i {
    width: 20px;
    height: 20px;
  }

  .lightbox__close {
    top: 16px;
    right: 16px;
  }

  .lightbox__prev {
    left: 16px;
  }

  .lightbox__next {
    right: 16px;
  }

  /* Még kevesebb emoji kis mobilon */
  .party-emoji--gallery-3,
  .party-emoji--gallery-6 {
    display: none;
  }
}

/* ========== FLASH OVERLAY - GALLERY ========== */
.flash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.flash-overlay.active {
  opacity: 1;
  animation: flash 0.5s ease-out;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Card Flash Animáció (hover) */
@keyframes cardFlash {
  0% {
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
  }
  50% {
    box-shadow:
      0 0 40px rgba(255, 255, 255, 0.6),
      0 4px 20px rgba(26, 26, 46, 0.08);
  }
  100% {
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
  }
}

/* ========== VÉG - GALÉRIA OLDAL ========== */

/* ================================================================================
   KAPCSOLAT OLDAL (CONTACT PAGE) - CSS STÍLUSOK
================================================================================ */

/* ========== CONTACT HERO SECTION ========== */
.contact-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  overflow: hidden;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-hero__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
}

/* ========== PARTY EMOJIS - CONTACT HERO ========== */
.party-emojis--contact .party-emoji {
  position: absolute;
  font-size: 3rem;
  opacity: 0.25;
  animation: floatEmoji 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatEmoji {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-30px) rotate(3deg);
  }
}

.party-emoji--contact-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.party-emoji--contact-2 {
  top: 15%;
  right: 8%;
  animation-delay: 1s;
}

.party-emoji--contact-3 {
  top: 35%;
  left: 10%;
  animation-delay: 2s;
}

.party-emoji--contact-4 {
  top: 40%;
  right: 12%;
  animation-delay: 3s;
}

.party-emoji--contact-5 {
  top: 60%;
  left: 7%;
  animation-delay: 1.5s;
}

.party-emoji--contact-6 {
  top: 65%;
  right: 10%;
  animation-delay: 2.5s;
}

.party-emoji--contact-7 {
  top: 80%;
  left: 15%;
  animation-delay: 0.5s;
}

.party-emoji--contact-8 {
  top: 85%;
  right: 5%;
  animation-delay: 3.5s;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 6rem 0;
  background: var(--bg-white);
}

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

/* ========== BAL OLDAL - ŰRLAP ========== */
.contact__form-wrapper {
  background: var(--color-dark);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact__form-header {
  margin-bottom: 2rem;
}

.contact__form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.contact__form-text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--color-primary);
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-family: "Archivo", sans-serif;
  color: var(--color-text-light);
  background: var(--bg-dark);
  border: 2px solid var(--color-grey-medium);
  border-radius: 12px;
  transition: all 0.3s ease;
  max-width: 100%; /* ← ÚJ SOR */
  box-sizing: border-box; /* ← ÚJ SOR */
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(244, 77, 132, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px;
  padding-right: 3rem;
  appearance: none;
}

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

.form-help {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Checkbox Styling */
.form-group--checkbox {
  margin-bottom: 2rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form-checkbox__checkmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: var(--bg-white);
  transition: all 0.3s ease;
  position: relative;
}

.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox__checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.form-checkbox
  input[type="checkbox"]:checked
  ~ .form-checkbox__checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox__label {
  font-size: 0.95rem;
  color: var(--color-text-grey);
  line-height: 1.5;
}

.form-checkbox__label a {
  color: var(--color-primary) !important;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form-checkbox__label a:hover {
  color: var(--color-primary-hover);
}

/* Form Messages */
.form-message {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

.form-message i {
  width: 20px;
  height: 20px;
}

.form-message--success {
  background: rgba(86, 217, 239, 0.1);
  color: #0097a7;
  border: 2px solid rgba(86, 217, 239, 0.3);
}

.form-message--error {
  background: rgba(244, 77, 132, 0.1);
  color: #c62828;
  border: 2px solid rgba(244, 77, 132, 0.3);
}

.form-message.show {
  display: flex;
}

/* Submit Button */
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ========== JOBB OLDAL - ELÉRHETŐSÉGEK ========== */
.contact__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Contact Info Card */
.contact-info-card {
  background: var(--color-dark);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-info-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.contact-info-card__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-card__item:last-child {
  border-bottom: none;
}

.contact-info-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: transform 0.3s ease;
}

.contact-info-card__icon--phone {
  background: linear-gradient(135deg, #f44d84 0%, #e03670 100%);
}

.contact-info-card__icon--email {
  background: linear-gradient(135deg, #56d9ef 0%, #3ec9e0 100%);
}

.contact-info-card__icon--location {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.contact-info-card__icon--clock {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.contact-info-card__icon i {
  width: 24px;
  height: 24px;
}

.contact-info-card__content {
  flex: 1;
}

.contact-info-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-card__link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card__link:hover {
  color: var(--color-primary) !important;
  text-decoration: none !important;
}

.contact-info-card__text {
  font-size: 1rem;
  color: var(--color-text-white);
  line-height: 1.6;
}

/* Social Media Card */
.contact-social-card {
  background: var(--color-dark);
  padding: 2.5rem;
  border-radius: 20px;
  color: var(--color-white);
  text-align: center;
}

.contact-social-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-social-card__text {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.contact-social-card__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-social-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--color-secondary) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-social-card__link:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: var(--color-primary) !important;
}

.contact-social-card__link svg {
  width: 24px;
  height: 24px;
}

/* ========== GYIK (FAQ) SECTION ========== */
.faq {
  padding: 6rem 0;
  background: var(--bg-light);
}

.faq__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-item__header:hover {
  background: rgba(86, 217, 239, 0.05);
}

.faq-item__question {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.5;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-item__content {
  max-height: 500px;
  padding: 0 2rem 2rem 2rem;
}

.faq-item__content p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
  padding-top: 0.5rem;
}

/* ========== RESPONSIVE - CONTACT ========== */
@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-hero__title {
    font-size: 2.5rem;
  }

  .contact-hero__subtitle {
    font-size: 1.125rem;
  }

  .contact__form-wrapper {
    padding: 2rem;
  }

  .contact-info-card,
  .contact-social-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }

  .faq {
    padding: 4rem 0;
  }

  .contact-hero {
    min-height: 40vh;
  }

  .contact-hero__content {
    padding: 3rem 1.5rem;
  }

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

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

  .contact__form-wrapper {
    padding: 1.5rem;
  }

  .contact__form-title {
    font-size: 1.75rem;
  }

  .contact-info-card,
  .contact-social-card {
    padding: 1.5rem;
  }

  .faq-item__header {
    padding: 1.25rem 1.5rem;
  }

  .faq-item__question {
    font-size: 1rem;
  }

  .faq-item.active .faq-item__content {
    padding: 0 1.5rem 1.75rem 1.5rem;
  }

  .party-emojis--contact .party-emoji {
    font-size: 2rem;
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .contact-hero__title {
    font-size: 1.75rem;
  }

  .contact-hero__subtitle {
    font-size: 0.95rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .contact-social-card__link {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .party-emojis--contact .party-emoji {
    font-size: 1.5rem;
  }

  .party-emoji--contact-7,
  .party-emoji--contact-8 {
    display: none;
  }
}

/* ========== VÉG - KAPCSOLAT OLDAL ========== */
/* Date input ikon színének módosítása */
.form-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(18%) sepia(89%) saturate(3283%) hue-rotate(322deg)
    brightness(95%) contrast(92%);
  cursor: pointer;
}

/* Firefox támogatás */
.form-input[type="date"]::-moz-calendar-picker-indicator {
  filter: invert(18%) sepia(89%) saturate(3283%) hue-rotate(322deg)
    brightness(95%) contrast(92%);
  cursor: pointer;
}

/* ========== Főoldal cikk gomb ========== */
/* Article Link Button */
.about__article-link {
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: left;
}

.about__article-link .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(244, 77, 132, 0.25);
}

.about__article-link .btn i {
  width: 22px;
  height: 22px;
}

.about__article-link .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244, 77, 132, 0.35);
}

/* ========== MINI BOXES (Jobb oldal - 3 extra) ========== */
.extras-faq__mini-boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.extras-mini-boxes__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 8px;
}

/* Mini Box Card */
.extras-mini-box {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.08);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.extras-mini-box:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.12);
  border-color: var(--color-secondary);
}

/* Mini Box Icon */
.extras-mini-box__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: var(--border-radius-lg);
  color: var(--color-white);
}

.extras-mini-box__icon i {
  width: 28px;
  height: 28px;
}

/* Mini Box Content */
.extras-mini-box__content {
  flex: 1;
}

.extras-mini-box__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.extras-mini-box__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}
/* ========== JOGI DOKS ========== */

/* =============================================
   JOGI OLDALAK CSS KIEGÉSZÍTÉS
   Impresszum, Adatvédelem, Sütik
   ============================================= */

/* ========== PAGE HERO (Jogi oldalak fejléce) ========== */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.page-hero__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

/* ========== LEGAL CONTENT SECTION ========== */
.legal-content {
  padding: 80px 0;
  background: var(--bg-light);
}

.container--narrow {
  max-width: 900px;
}

/* ========== LEGAL CARD ========== */
.legal-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.legal-card--highlight {
  border: 2px solid var(--color-primary);
  background: linear-gradient(
    to bottom,
    var(--color-white),
    rgba(244, 77, 132, 0.02)
  );
}

.legal-card__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-card__icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.legal-card__content {
  color: var(--color-text);
  line-height: 1.8;
}

.legal-card__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-card__content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-card__content p {
  margin-bottom: 16px;
}

.legal-card__content p:last-child {
  margin-bottom: 0;
}

.legal-card__content ul {
  margin-bottom: 16px;
}

.legal-card__content strong {
  color: var(--color-dark);
  font-weight: 600;
}

/* ========== LEGAL ROW (Adat-érték párok) ========== */
.legal-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.legal-row:last-child {
  border-bottom: none;
}

.legal-row strong {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.legal-row span {
  color: var(--color-text);
}

/* ========== LEGAL LIST ========== */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-list__icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== LEGAL LINK ========== */
.legal-link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.3s ease;
  word-break: break-word;
}

.legal-link:hover {
  color: var(--color-primary);
}

/* ========== LEGAL ALERT (Info boxok) ========== */
.legal-alert {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
}

.legal-alert i {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-alert--info {
  background: rgba(86, 217, 239, 0.1);
  border-left: 4px solid var(--color-secondary);
  color: var(--color-text);
}

.legal-alert--info i {
  color: var(--color-secondary);
}

.legal-alert--warning {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--color-accent);
  color: var(--color-text);
}

.legal-alert--warning i {
  color: var(--color-accent);
}

.legal-alert ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.legal-alert li {
  margin-bottom: 4px;
}

/* ========== DATA TABLE (Adattáblázatok) ========== */
.data-table,
.cookie-table {
  margin: 24px 0;
  overflow-x: auto;
}

.data-table table,
.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
}

.data-table th,
.cookie-table th {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.data-table td,
.cookie-table td {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-text);
}

.data-table tr:last-child td,
.cookie-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover,
.cookie-table tbody tr:hover {
  background: rgba(244, 77, 132, 0.03);
}

.data-table code,
.cookie-table code {
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--color-primary);
}

/* ========== THIRD PARTY CARDS (Harmadik felek) ========== */
.third-party-list {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.third-party-card {
  background: rgba(86, 217, 239, 0.05);
  border: 1px solid rgba(86, 217, 239, 0.2);
  border-radius: 8px;
  padding: 24px;
}

.third-party-card h4 {
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.third-party-card p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ========== BROWSER LINKS ========== */
.browser-links {
  margin: 24px 0;
}

.browser-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
}

/* ========== LEGAL BUTTON GROUP ========== */
.legal-button-group {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.legal-button-group .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-button-group .btn i {
  width: 20px;
  height: 20px;
}

/* ========== LEGAL FOOTER ========== */
.legal-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #e0e0e0;
  text-align: center;
  color: var(--color-text-light);
}

.legal-footer p {
  margin-bottom: 8px;
}

.legal-footer strong {
  color: var(--color-dark);
}

/* ========== RESPONSIVE (Mobil) ========== */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 60px;
  }

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

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

  .legal-content {
    padding: 40px 0;
  }

  .legal-card {
    padding: 24px;
    margin-bottom: 20px;
  }

  .legal-card__title {
    font-size: 1.35rem;
  }

  .legal-card__icon {
    width: 24px;
    height: 24px;
  }

  .legal-row {
    padding: 12px 0;
  }

  .legal-alert {
    flex-direction: column;
    gap: 12px;
  }

  .data-table,
  .cookie-table {
    font-size: 0.875rem;
  }

  .data-table th,
  .data-table td,
  .cookie-table th,
  .cookie-table td {
    padding: 12px 8px;
  }

  .third-party-card {
    padding: 16px;
  }

  .legal-button-group {
    flex-direction: column;
  }

  .legal-button-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-hero__title {
    font-size: 1.75rem;
  }

  .legal-card {
    padding: 20px;
  }

  .legal-card__title {
    font-size: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .data-table table,
  .cookie-table table {
    font-size: 0.8rem;
  }
}

/* ========== PRINT STYLES (Nyomtatás) ========== */
@media print {
  .header,
  .footer,
  .nav__toggle,
  .lang-switch,
  .legal-button-group {
    display: none !important;
  }

  .page-hero {
    background: none;
    color: #000;
    padding: 20px 0;
  }

  .page-hero__title,
  .page-hero__subtitle {
    color: #000;
  }

  .legal-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }

  .legal-alert {
    break-inside: avoid;
  }

  .data-table,
  .cookie-table {
    break-inside: avoid;
  }
}

/* ====================== Univerzális input fix minden eszközre */
input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select, #event-date {
    max-width: 100%;
    box-sizing: border-box;
}

/* Form container fix */
form {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ========== IOS SAFARI FIX - Dátum input ========== */
@media (max-width: 768px) {
    /* Viewport fix */
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Form container */
    .contact-form,
    form {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
    
    /* Input fix iOS Safari számára */
    .form-input,
    .form-input[type="date"],
    .form-input[type="text"],
    .form-input[type="email"],
    .form-input[type="tel"],
    .form-textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 14px 16px !important; /* Kicsit kisebb padding */
        font-size: 16px !important; /* iOS zoom megakadályozása */
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* iOS date picker specifikus fix */
    .form-input[type="date"] {
        min-height: 44px; /* iOS touch target */
        padding-right: 10px !important; /* Calendar ikon helye */
    }
}

/* ========== VÉG ========== */
