/* =========================================================
   PARTY TÜKÖR — MODERN DESIGN SYSTEM
   ========================================================= */

:root {
  --gold: #ad9547;
  --gold-dark: #8a7736;
  --gold-light: #d8c78a;
  --ink: #221f1a;
  --ink-soft: #55504a;
  --cream: #fbf7f0;
  --cream-deep: #f3ead9;
  --blush: #fdeeee;
  --white: #ffffff;
  --line: rgba(34, 31, 26, 0.09);
  --shadow-sm: 0 4px 16px rgba(34, 31, 26, 0.07);
  --shadow-md: 0 12px 40px rgba(34, 31, 26, 0.12);
  --shadow-lg: 0 24px 70px rgba(34, 31, 26, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1220px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}
p { line-height: 1.75; margin: 0 0 1em; color: var(--ink-soft); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---------- top navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(251, 247, 240, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border-radius: 14px;
}
.brand img { height: 42px; width: auto; }
.header-left { display: flex; align-items: center; gap: 26px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 700; font-size: 1.02rem;
  white-space: nowrap; text-decoration: none;
}
.header-phone i { color: var(--gold); font-size: 1.05rem; }
.header-phone:hover { color: var(--gold-dark); }
@media (max-width: 1080px) {
  .header-phone span { display: none; }
  .header-left { gap: 14px; }
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink);
  position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav > .nav-item { position: relative; }
.main-nav > .nav-item > a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 100px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav > .nav-item > a:hover { background: var(--cream-deep); color: var(--gold-dark); }
.nav-item .submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s;
  z-index: 50;
}
.nav-item:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.submenu a:hover { background: var(--cream); color: var(--gold-dark); }
.nav-cta { margin-left: 8px; }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 20px 20px;
    max-height: 80vh;
    overflow: auto;
  }
  .main-nav.open { display: flex; }
  .nav-item .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; display: none; margin: 0 0 6px 12px; padding: 0;
  }
  .nav-item.open .submenu { display: block; }
  .nav-cta { margin: 8px 0 0; }
}

/* ---------- hero (teljes szelessegu banner) ---------- */
.hero {
  position: relative;
  height: 420px;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(20,17,12,.72) 0%, rgba(20,17,12,.42) 45%, rgba(20,17,12,.12) 75%);
}
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-content h1 { color: #fff; }
.hero-content .lead { color: rgba(255,255,255,.88); }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero-kicker::before { content: "✦"; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 720px; }
.hero .lead { font-size: 1.1rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
@media (min-width: 901px) {
  .hero { height: 540px; max-height: 540px; }
}
@media (max-width: 700px) {
  .hero { height: 360px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(20,17,12,.35), rgba(20,17,12,.75)); }
  .hero-content { text-align: center; }
  .hero-kicker, .hero-actions { justify-content: center; }
  .hero .lead { margin-inline: auto; }
}

/* ---------- hero: 4-reszes kep-blokk variáns ---------- */
.hero-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-tile {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: block;
}
.hero-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.hero-tile:hover img { transform: scale(1.06); }
.hero-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.45));
  opacity: 0; transition: opacity .3s ease;
}
.hero-tile:hover::after { opacity: 1; }
.hero-tile-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 16px;
  color: #fff; font-weight: 700; font-size: .95rem; text-align: center;
  z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
@media (max-width: 700px) {
  .hero-grid4 { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
}

/* ---------- section shell ---------- */
.module-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.module-col { min-width: 0; }
.section-divider { padding: 26px 0; }
@media (max-width: 800px) { .module-row { grid-template-columns: 1fr; } }

.section { padding: 78px 0; }
.section.alt { background: var(--white); }
.section.tint { background: var(--cream-deep); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.divider-heading {
  display: flex; align-items: center; gap: 20px; max-width: 640px; margin: 0 auto 40px;
}
.divider-heading::before, .divider-heading::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.divider-heading span {
  font-family: var(--serif); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold-dark); font-size: 15px; white-space: nowrap;
}
.tagline-row {
  text-align: center; max-width: 780px; margin: 0 auto 40px; padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--serif); font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--gold-dark); font-size: 14px; line-height: 1.9;
}

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 500px; object-fit: cover; display: block; }
.split-stack { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; height: 500px; }
.split-stack img { border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); width: 100%; height: 100%; object-fit: cover; }
.split-body h3 { font-size: 1.7rem; }
.split-body .btn { margin-top: 8px; }
.split-body.panel { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split-media img, .split-stack { height: 320px; }
}

/* ---------- rich text panel ---------- */
.panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.panel h3 { font-size: 1.6rem; }

.panel-compact {
  background: var(--white); border-radius: var(--radius); padding: 34px 40px;
  box-shadow: var(--shadow-sm); max-height: 405px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.panel-compact p { font-size: .95rem; }
.panel-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) {
  .panel-pair { grid-template-columns: 1fr; }
  .panel-compact { max-height: none; }
}

/* ---------- feature cards ---------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .ico {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: #fff; font-size: 22px;
}
.feature-card h5 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: .93rem; margin: 0; }

/* ---------- photo gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
  cursor: zoom-in;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid.named figure { aspect-ratio: auto; display: flex; flex-direction: column; cursor: default; }
.gallery-grid.named figure > img { aspect-ratio: 1/1; cursor: zoom-in; }
.gallery-grid.named figcaption {
  padding: 10px 4px; text-align: center; font-size: .82rem; font-weight: 600;
  color: var(--ink-soft); background: var(--white);
}

/* ---------- testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tst-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: .95rem; }
.tst-quote { font-style: italic; flex: 1; }
.tst-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.tst-venue { font-size: .8rem; color: var(--ink-soft); }

/* ---------- logo strip ---------- */
.logo-strip {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center;
}
.logo-strip a, .logo-strip .logo-item {
  display: flex; align-items: center; justify-content: center;
  width: 150px; height: 90px; filter: grayscale(1) opacity(.75);
  transition: filter .25s, transform .25s;
}
.logo-strip a:hover, .logo-strip .logo-item:hover { filter: none; transform: translateY(-4px); }
.logo-strip img { max-height: 48px; width: auto; }

/* ---------- card grid (image+title+text+cta) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.info-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.info-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.info-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.info-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.info-card h5 { font-size: 1.05rem; }
.info-card p { font-size: .92rem; flex: 1; }
.info-card .btn { align-self: flex-start; margin-top: 10px; }

/* ---------- video ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.video-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 16/9; background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- stats ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px; text-align: center;
}
.stat { background: var(--white); border-radius: var(--radius); padding: 34px 18px; box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 800; color: var(--gold-dark); display: block; }
.stat .label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- forms ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius); padding: 46px;
  box-shadow: var(--shadow-md); max-width: 880px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.form-grid.narrow { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px;
  font-family: var(--sans); font-size: .95rem; background: var(--cream); color: var(--ink);
}
.field textarea { resize: vertical; min-height: 100px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin: 10px 0; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--ink-soft); }
.checkbox-item input { width: 16px; height: 16px; }
.form-note { font-size: .82rem; color: var(--ink-soft); }
.form-submit { margin-top: 18px; text-align: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #ece7dd; padding: 70px 0 26px; }
.newsletter-box {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: rgba(255,255,255,.06); border-radius: 20px; padding: 30px 34px; margin-bottom: 44px;
}
.newsletter-box p { color: #cfc8ba; font-size: .9rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 12px 20px;
  background: rgba(255,255,255,.08); color: #fff; min-width: 240px; font-family: var(--sans);
}
.newsletter-form input::placeholder { color: #b9b2a3; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer .brand { background: transparent; padding: 0; }
.site-footer .brand img { filter: brightness(0) invert(1); height: 44px; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer p, .site-footer a { color: #cfc8ba; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-list a:hover { color: var(--gold-light); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact div { display: flex; align-items: center; gap: 10px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.social-row a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: .82rem; color: #a19a8c; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 480px; margin: 0 auto;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 22px 24px;
  z-index: 2000; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: .88rem; margin-bottom: 14px; }
.cookie-banner a { color: var(--gold-dark); text-decoration: underline; }

/* ---------- scroll to top ---------- */
.to-top {
  position: fixed; bottom: 24px; right: 24px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .25s; z-index: 900; box-shadow: var(--shadow-md);
}
.to-top.show { opacity: 1; visibility: visible; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,8,5,.92); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; }
.lightbox .lb-close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 30px; cursor: pointer; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 34px; cursor: pointer; padding: 10px; }
.lightbox .lb-prev { left: 16px; }
.lightbox .lb-next { right: 16px; }

/* ---------- misc ---------- */
.page-hero-simple {
  padding: 60px 0 40px; text-align: center;
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
}
.page-hero-simple h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.legal-content h3 { margin-top: 1.6em; font-size: 1.2rem; }
.legal-content { max-width: 800px; margin: 0 auto; }
