/* =============================================
   MAGYAR ÍZEK ÉTTEREM — Közös stíluslap
   ============================================= */

:root {
  --cream: #F8F2E8;
  --warm-white: #FDF9F3;
  --gold: #C49A3C;
  --gold-light: #E8C66A;
  --burgundy: #7A1B2E;
  --burgundy-deep: #5C1220;
  --brown: #4A2F1A;
  --brown-mid: #8B5E3C;
  --brown-light: #C4906A;
  --charcoal: #2A1F15;
  --text-body: #3D2B1A;
  --text-muted: #7A6352;
  --divider: #D4B896;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', serif;
  background: var(--warm-white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

/* =============================================
   NAVIGÁCIÓ
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 14, 5, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 154, 60, 0.3);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-logo-sub {
  color: rgba(255,255,255,0.6);
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-logo span { display: none; }

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(26, 14, 5, 0.98);
  z-index: 99;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(196, 154, 60, 0.3);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196,154,60,0.15);
  transition: color 0.25s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* =============================================
   KÖZÖS ELEMEK
   ============================================= */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

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

.btn-cta {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: var(--burgundy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--burgundy);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-align: center;
}

.btn-cta:hover {
  background: transparent;
  color: var(--burgundy);
  transform: translateY(-2px);
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #120A03;
  border-top: 1px solid rgba(196,154,60,0.3);
  padding: 1.25rem 2rem;
  display: none;
}

#cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-accept {
  background: var(--gold);
  color: var(--charcoal);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-buttons { justify-content: center; }
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gold-bar {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}

/* =============================================
   OLDAL FEJLÉC (belső oldalakhoz)
   ============================================= */
.page-header {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, #1A0E05 0%, #3D1E0A 40%, #5C2F14 70%, #2A1208 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 40px);
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-header-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-header p {
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 860px;
  line-height: 1.7;
}

/* =============================================
   FŐOLDAL — HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(26,14,5,0.82) 0%, rgba(61,30,10,0.75) 40%, rgba(42,18,8,0.80) 100%),
    url('hero.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 40px);
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,154,60,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: 0.7em;
  font-weight: 400;
  margin-top: 0.3rem;
}

.hero-body {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-body p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,154,60,0.25);
  padding: 2rem;
}

.hero-card-icon { font-size: 3rem; margin-bottom: 1rem; }

.hero-card-quote {
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,154,60,0.2);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* GYORS LINKEK */
.quicklinks {
  background: var(--cream);
  padding: 4rem 2rem;
}

.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ql-card {
  background: var(--warm-white);
  border: 1px solid var(--divider);
  padding: 2rem 1.5rem;
  text-decoration: none;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
  display: block;
}

.ql-card:hover {
  box-shadow: 0 4px 20px rgba(74,47,26,0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.ql-icon { font-size: 2.2rem; display: block; margin-bottom: 0.75rem; }

.ql-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.ql-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   MENÜ OLDAL
   ============================================= */
.menu-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.menu-grid { display: grid; gap: 3rem; }

.menu-category {
  border-top: 2px solid var(--divider);
  padding-top: 2rem;
}

.menu-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-cat-icon { font-size: 1.3rem; }

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.menu-item {
  background: var(--warm-white);
  border: 1px solid var(--divider);
  transition: box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-item-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-img {
  transform: scale(1.04);
}

.menu-item-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.menu-item:hover {
  box-shadow: 0 4px 20px rgba(74,47,26,0.1);
  border-color: var(--gold);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
}

.menu-item-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--burgundy);
  white-space: nowrap;
  background: rgba(122,27,46,0.08);
  padding: 0.2rem 0.6rem;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.menu-note {
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(196,154,60,0.07);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* =============================================
   GALÉRIA OLDAL
   ============================================= */
.galeria-section {
  padding: 5rem 2rem;
  background: var(--warm-white);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.gal-cell {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.gal-cell:hover .gal-img {
  transform: scale(1.06);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--divider);
  padding: 1.75rem;
  position: relative;
}

.review-quote {
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}

.review-text {
  font-style: italic;
  color: var(--text-body);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.review-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }

/* =============================================
   RÓLUNK OLDAL
   ============================================= */
.rolunk-section {
  padding: 5rem 2rem;
  background: var(--charcoal);
  color: #fff;
}

.rolunk-section .section-title { color: #fff; }
.rolunk-section .section-lead { color: rgba(255,255,255,0.65); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-story {
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  font-size: 0.97rem;
}

.about-story p + p { margin-top: 1.25rem; }
.about-story strong { color: var(--gold); font-weight: 600; }

.team-grid { display: grid; gap: 1.5rem; }

.team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,154,60,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}

.team-card:hover {
  border-color: rgba(196,154,60,0.5);
  transform: translateY(-3px);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card-body {
  padding: 1.5rem;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.commitment-box {
  margin-top: 2rem;
  border: 1px solid rgba(196,154,60,0.3);
  padding: 1.5rem;
  background: rgba(196,154,60,0.05);
}

.commitment-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.commitment-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* =============================================
   KAPCSOLAT OLDAL
   ============================================= */
.kapcsolat-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-value { font-size: 0.95rem; color: var(--charcoal); }
.contact-value a { color: var(--burgundy); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

.hours-grid {
  margin-top: 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--divider);
  padding: 1.25rem 1.5rem;
}

.hours-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(212,184,150,0.4);
  color: var(--text-body);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--burgundy); font-weight: 500; }

.map-placeholder {
  margin-top: 1.5rem;
  background: linear-gradient(160deg, #4A2F1A, #7A1B2E);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}

.map-placeholder span:first-child { font-size: 2rem; }

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-label span { font-size: 0.65rem; }

.form-input, .form-textarea {
  width: 100%;
  background: var(--warm-white);
  border: 1px solid var(--divider);
  padding: 0.85rem 1rem;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--burgundy);
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.form-submit:hover { background: var(--burgundy-deep); }

.form-success {
  display: none;
  background: rgba(122,27,46,0.08);
  border: 1px solid var(--burgundy);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--burgundy);
  margin-top: 1rem;
}

/* =============================================
   ADATKEZELÉS OLDAL
   ============================================= */
.privacy-section-page {
  padding: 5rem 2rem;
  background: var(--warm-white);
}

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

.privacy-block { margin-bottom: 2rem; }

.privacy-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.privacy-block p,
.privacy-block ul {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.privacy-block ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.privacy-block ul li { margin-bottom: 0.3rem; }

.privacy-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--divider);
  padding-top: 1.25rem;
  font-style: italic;
}

/* =============================================
   LÁBLÉC
   ============================================= */
footer {
  background: #120A03;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(196,154,60,0.2);
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-logo img {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.footer-slogan {
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   SCROLL REVEAL & ANIMÁCIÓ
   ============================================= */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESZPONZÍV
   ============================================= */
@media (max-width: 900px) {
  .quicklinks-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .hero-visual { display: none; }

  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .menu-items { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .quicklinks-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-outline { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
