/* ============================================================
   NEKED SÜTÖM – Premium Gold Redesign
   style.css – Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  /* Gold palette */
  --gold:           #C8A84E;
  --gold-light:     #E2C97E;
  --gold-dark:      #9E7B2A;
  --gold-pale:      #F7F0DD;
  --gold-shimmer:   linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  --gold-gradient:  linear-gradient(135deg, #C8A84E 0%, #E2C97E 50%, #C8A84E 100%);
  --gold-subtle:    rgba(200, 168, 78, 0.08);
  --gold-border:    rgba(200, 168, 78, 0.2);

  /* Neutrals */
  --bg:             #FDFBF7;
  --bg-cream:       #F8F4EC;
  --bg-card:        #FFFFFF;
  --bg-dark:        #1A1714;
  --bg-dark-card:   #252119;
  --dark:           #1A1714;
  --text:           #3D3529;
  --text-muted:     #8A7E6D;
  --text-light:     rgba(255,255,255,0.7);
  --white:          #FFFFFF;
  --border:         rgba(200, 168, 78, 0.12);
  --border-subtle:  rgba(0,0,0,0.06);

  /* Shadows */
  --shadow-xs:      0 1px 3px rgba(26,23,20,0.04);
  --shadow-sm:      0 2px 12px rgba(26,23,20,0.06);
  --shadow-md:      0 8px 32px rgba(26,23,20,0.1);
  --shadow-lg:      0 20px 60px rgba(26,23,20,0.15);
  --shadow-gold:    0 8px 32px rgba(200,168,78,0.2);

  /* Layout */
  --radius:         20px;
  --radius-sm:      12px;
  --radius-xs:      8px;
  --radius-pill:    50px;
  --transition:     0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, sans-serif;
  --nav-h:          80px;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

::selection {
  background: var(--gold);
  color: white;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

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

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: min(1240px, 90%);
  margin-inline: auto;
}

.container--narrow {
  width: min(780px, 90%);
  margin-inline: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--transition);
  padding: 0 2rem;
}

.nav.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 1px 0 var(--border);
  height: 68px;
}

.nav__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.nav__logo:hover .nav__logo-img {
  transform: rotate(-5deg) scale(1.05);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-dark);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white !important;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(200,168,78,0.25);
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,78,0.35);
}

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

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}

.nav__mobile-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__mobile-link:hover {
  color: var(--gold);
}

.nav__mobile-link:hover::after {
  width: 100%;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 20px rgba(200,168,78,0.3);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200,168,78,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn--outline:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn--outline-white:hover {
  background: white;
  color: var(--dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--bg-cream);
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── Hero – Homepage ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.15); }
  to   { transform: scale(1.0); }
}



.hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, black, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 4rem) 0 8rem;
  width: min(560px, 90%);
  margin-left: 5%;
  margin-right: auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold-light);
}

.hero__title {
  color: white;
  max-width: 720px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  display: inline;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero__btns {
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s ease both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(340px, 55vh, 540px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,23,20,0.9) 0%, rgba(26,23,20,0.35) 50%, rgba(26,23,20,0.1) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(1240px, 90%);
  margin-inline: auto;
  padding-bottom: 3.5rem;
}

.page-hero__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.page-hero__label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
}

.page-hero__title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 7rem 0;
}

.section--sm { padding: 4rem 0; }
.section--lg { padding: 9rem 0; }

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

.section--dark h2,
.section--dark h3,
.section--dark h4 { color: white; }
.section--dark p { color: rgba(255,255,255,0.6); }

.section--cream { background: var(--bg-cream); }

.section__header {
  margin-bottom: 4rem;
}

.section__header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section__header--center .section-label::before {
  display: none;
}

/* ── Újdonság Banner ──────────────────────────────────────── */
.ujdonsag {
  background: var(--bg-dark);
  color: white;
  padding: 0.9rem 0;
  text-align: center;
  margin-top: var(--nav-h);
  border-bottom: 1px solid rgba(200,168,78,0.2);
}

.ujdonsag__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ujdonsag__badge {
  background: var(--gold);
  color: var(--dark);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ujdonsag__text {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

/* ── Food Cards ───────────────────────────────────────────── */
.food-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition), box-shadow var(--transition);
}

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.food-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.food-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.food-card:hover .food-card__img-wrap img {
  transform: scale(1.08);
}

.food-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: white;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(200,168,78,0.35);
}

.food-card__body {
  padding: 1.75rem;
}

.food-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.food-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.food-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.food-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ── Featured Item (large) ───────────────────────────────── */
.featured-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: white;
  border: 1px solid var(--border-subtle);
}

.featured-item.reverse { direction: rtl; }
.featured-item.reverse > * { direction: ltr; }

.featured-item__img {
  position: relative;
  overflow: hidden;
}

.featured-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.featured-item:hover .featured-item__img img {
  transform: scale(1.05);
}

.featured-item__body {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-item__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.featured-item__desc {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.featured-item__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 1.5rem;
}

/* ── Menu List ─────────────────────────────────────────── */
.menu-list { list-style: none; }

.menu-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-list__item:first-child { border-top: 1px solid var(--border); }

.menu-list__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.menu-list__info { flex: 1; }

.menu-list__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  display: block;
  margin-bottom: 0.2rem;
}

.menu-list__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.menu-list__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ── Mini Menu Card ──────────────────────────────────────── */
.mini-menu {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}

.mini-menu__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-pale);
  color: var(--dark);
}

.mini-menu__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--border);
}

.mini-menu__row:last-child { border-bottom: none; }

.mini-menu__item-name {
  font-size: 0.92rem;
  color: var(--text);
}

.mini-menu__item-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.gallery-item:hover img { transform: scale(1.06); }

/* ── Quote Section ───────────────────────────────────────── */
.quote-section {
  text-align: center;
  padding: 8rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '❝';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14rem;
  color: rgba(200,168,78,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
  position: relative;
}

.review-card::before {
  content: '❝';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: var(--gold-pale);
  font-family: var(--font-display);
  line-height: 1;
}

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

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.review-card__stars span {
  color: var(--gold);
  font-size: 1rem;
}

.review-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card__author {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

/* ── Opening Hours ───────────────────────────────────────── */
.hours-grid {
  display: grid;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xs);
  transition: background var(--transition);
}

.hours-row:hover { background: var(--gold-subtle); }

.hours-row--today {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
}

.hours-row--today .hours-day,
.hours-row--today .hours-time { color: var(--gold-dark) !important; font-weight: 600; }

.hours-day {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.hours-time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--dark);
}

.hours-time.closed {
  color: var(--text-muted);
  font-style: italic;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-item__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.contact-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-item__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
}

/* ── Map ─────────────────────────────────────────────────── */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Delivery Buttons ────────────────────────────────────── */
.delivery-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.delivery-btn--wolt {
  background: #009de0;
  color: white;
}

.delivery-btn--wolt:hover {
  background: #0080c0;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 157, 224, 0.35);
}

.delivery-btn--foodora {
  background: #d9006e;
  color: white;
}

.delivery-btn--foodora:hover {
  background: #b0005a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(217, 0, 110, 0.35);
}

.delivery-btn__logo {
  font-size: 1.2rem;
  font-weight: 800;
}

/* ── Special Offer Card ──────────────────────────────────── */
.offer-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-subtle);
}

.offer-card__img {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.offer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.offer-card:hover .offer-card__img img { transform: scale(1.06); }

.offer-card__body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-card__tag {
  display: inline-flex;
  align-items: center;
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.offer-card__title {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 0.75rem;
}

.offer-card__desc {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.offer-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 1.5rem;
}

/* ── Drink Section ────────────────────────────────────── */
.drink-photo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.drink-photo-section__img {
  position: relative;
  min-height: 500px;
}

.drink-photo-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drink-photo-section__content {
  background: var(--bg-dark);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Seasonal Menu Card ──────────────────────────────────── */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.seasonal-item {
  background: rgba(200,168,78,0.08);
  border: 1px solid rgba(200,168,78,0.15);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: all var(--transition);
}

.seasonal-item:hover {
  background: rgba(200,168,78,0.12);
  border-color: rgba(200,168,78,0.3);
  transform: translateY(-2px);
}

.seasonal-item__name {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.4rem;
}

.seasonal-item__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__logo img {
  height: 40px;
  opacity: 0.85;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  position: relative;
  display: inline-block;
}

.footer__nav a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer__green-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}

.divider--center { margin-inline: auto; }

/* ── Stat Strip ──────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,168,78,0.12);
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(200,168,78,0.1);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── Tags ─────────────────────────────────────────────── */
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag {
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--gold-border);
}

/* ── Marquee Gallery (dual row, mixed shapes) ────────────── */
.marquee-section {
  overflow: hidden;
  background: var(--bg-dark);
  padding: 2.5rem 0;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-row {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0;
  align-items: center;
}

.marquee-row--left {
  animation: marqueeLeft 50s linear infinite;
}

.marquee-row--right {
  animation: marqueeRight 55s linear infinite;
  margin-top: 1.5rem;
}

.marquee-row:hover {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-slide {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease, border-color 0.4s ease;
  border: 3px solid transparent;
}

.marquee-slide--wide {
  width: 340px;
  height: 220px;
  border-radius: var(--radius);
}

.marquee-slide--tall {
  width: 190px;
  height: 260px;
  border-radius: 100px;
}

.marquee-slide--circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.marquee-slide--oval {
  width: 280px;
  height: 180px;
  border-radius: 100px;
}

.marquee-slide--square {
  width: 220px;
  height: 220px;
  border-radius: var(--radius);
}

.marquee-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.marquee-slide:hover {
  transform: scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(200,168,78,0.4), 0 0 60px rgba(200,168,78,0.12);
  z-index: 2;
}

.marquee-slide:hover img {
  transform: scale(1.12);
}

.marquee-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(to top, rgba(26,23,20,0.85), transparent);
  color: white;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s ease;
}

.marquee-slide--circle .marquee-label,
.marquee-slide--tall .marquee-label {
  border-radius: 0 0 100px 100px;
}

.marquee-slide:hover .marquee-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .marquee-slide--wide  { width: 250px; height: 160px; }
  .marquee-slide--tall  { width: 150px; height: 200px; }
  .marquee-slide--circle { width: 150px; height: 150px; }
  .marquee-slide--oval  { width: 210px; height: 140px; }
  .marquee-slide--square { width: 160px; height: 160px; }
  .marquee-row { gap: 1rem; }
  .marquee-row--right { margin-top: 1rem; }
  .marquee-section { padding: 1.5rem 0; }
}

/* ── Order Strip (parallax bg) ───────────────────────────── */
.order-strip {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
  background-image: url('../assets/images/3a58e-sajtos-tejfolos-1-1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.order-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.78);
  z-index: 1;
}

.order-strip .container,
.order-strip > .container {
  position: relative;
  z-index: 2;
}

.order-strip h2 { color: white; margin-bottom: 0.75rem; }
.order-strip p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }

@supports (-webkit-touch-callout: none) {
  .order-strip { background-attachment: scroll; }
}

/* ── About Page ──────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img__main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img__main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img__accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg);
}

.about-img__accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-text h2 { margin-bottom: 1rem; }

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}

/* ── Kapcsolat Page ──────────────────────────────────────── */
.kapcsolat-hero {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kapcsolat-hero::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.kapcsolat-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.hours-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.contact-link-big {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
}

.contact-link-big:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.contact-link-big__icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: white;
}

.contact-link-big__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-link-big__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 500;
}

.contact-link-big__arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transition: all var(--transition);
}

.contact-link-big:hover .contact-link-big__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── Szörpjeink Page ─────────────────────────────────────── */
.drinks-hero-section {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.drinks-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/Neked-Sutom-Szorpok-1.jpg') center/cover no-repeat;
  opacity: 0.1;
  filter: saturate(0.5);
}

.drinks-hero-section .container { position: relative; z-index: 1; }

.drinks-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: start;
}

.drink-category {
  margin-bottom: 3rem;
}

.drink-category__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-pale);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drink-category__title-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.itallap-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.itallap-photo img {
  width: 100%;
  display: block;
}

.drink-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.drink-item:last-child { border-bottom: none; }

.drink-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.drink-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.drink-item__new {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.ujdonsag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,168,78,0.12);
  border: 1px solid rgba(200,168,78,0.3);
  color: var(--gold-light);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.szorp-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.szorp-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.szorp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.szorp-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.szorp-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.szorp-card__note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-img__accent { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .drinks-layout { grid-template-columns: 1fr; }
  .itallap-photo { position: static; max-width: 540px; margin: 0 auto; }
  .kapcsolat-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }

  .featured-item { grid-template-columns: 1fr; }
  .featured-item.reverse { direction: ltr; }
  .featured-item__img img { min-height: 260px; }
  .featured-item__body { padding: 2.5rem 2rem; }

  .offer-card { grid-template-columns: 1fr; }

  .drink-photo-section { grid-template-columns: 1fr; }
  .drink-photo-section__img { min-height: 280px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

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

  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(200,168,78,0.08); }
  .stat-item:last-child { border-bottom: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .hero__sub { max-width: 100%; }

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

  .section { padding: 5rem 0; }
  .section--lg { padding: 6rem 0; }

  .szorp-showcase { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .delivery-wrap { flex-direction: column; }
  .delivery-btn { width: 100%; justify-content: center; }
  .nav__cta { display: none; }
  .hero__content { padding: 0px; padding-top: 0px;}
  .hero{align-items: flex-start;}
  .btn--outline-white{
    display: none;
  }
}




.hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
  display: flex;
  align-items: center;
}

.hero-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e0e04 0%, #2e1a08 40%, #3a2210 70%, #1e0e04 100%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('/assets/Neked-Sutom-Bajai-Langosozo-1.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
  filter: sepia(0.25) saturate(0.85) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(15,7,2,0.90) 0%,
      rgba(15,7,2,0.6) 20%,
      rgba(15,7,2,0.1) 50%,
      rgba(15,7,2,0.1) 80%,
      transparent 100%
    );
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(200,130,30,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 85%, rgba(180,110,20,0.15) 0%, transparent 55%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px;
}

.top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #b06c18 10%, #e8a835 35%, #f5c84a 50%, #e8a835 65%, #b06c18 90%, transparent 100%);
}

.bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #6a3c0c 20%, #b87820 50%, #6a3c0c 80%, transparent 100%);
}

.corner { position: absolute; width: 48px; height: 48px; opacity: 0.45; }
.c-tl { top: 20px; left: 20px; border-top: 1.5px solid #d4922a; border-left: 1.5px solid #d4922a; }
.c-tr { top: 20px; right: 20px; border-top: 1.5px solid #d4922a; border-right: 1.5px solid #d4922a; }
.c-bl { bottom: 20px; left: 20px; border-bottom: 1.5px solid #d4922a; border-left: 1.5px solid #d4922a; }
.c-br { bottom: 20px; right: 20px; border-bottom: 1.5px solid #d4922a; border-right: 1.5px solid #d4922a; }

/* — Mobil: sarkok kicsik — */
@media (max-width: 480px) {
  .corner { width: 30px; height: 30px; }
  .c-tl { top: 12px; left: 12px; }
  .c-tr { top: 12px; right: 12px; }
  .c-bl { bottom: 12px; left: 12px; }
  .c-br { bottom: 12px; right: 12px; }
}

.content {
  position: relative;
  z-index: 10;
  padding: 68px 48px 68px 56px;
  max-width: 560px;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d4922a;
  margin-bottom: 22px;
  animation: fadeUp 1s 0.08s both;
}
.eyebrow-line {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, #c07820, transparent);
  flex-shrink: 0;
}

.headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: #f5e2b8;
  margin-bottom: 8px;
  animation: fadeUp 1s 0.15s both;
}
.headline em {
  font-style: italic;
  font-weight: 400;
  color: #e8a835;
}

.subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(16px, 2.8vw, 28px);
  font-weight: 400;
  color: #b87820;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.22s both;
}

.sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  animation: fadeUp 1s 0.28s both;
}
.sep-line { width: 50px; height: 1px; background: linear-gradient(90deg, #c07820, transparent); }
.sep-diamond { width: 7px; height: 7px; background: #d4922a; transform: rotate(45deg); flex-shrink: 0; }

.desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
  color: #b89060;
  max-width: 410px;
  margin-bottom: 38px;
  animation: fadeUp 1s 0.33s both;
}
.desc strong { color: #ddb870; font-weight: 600; }

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.42s both;
}

.btn-main {
  font-family: 'Nunito', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1e0e04;
  background: linear-gradient(135deg, #f0bb40 0%, #d4922a 55%, #e8a835 100%);
  border: none;
  padding: 15px 36px;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,146,42,0.38);
}

.btn-ghost {
  font-family: 'Nunito', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4922a;
  background: transparent;
  border: 1.5px solid rgba(212,146,42,0.4);
  padding: 13px 28px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.btn-ghost:hover {
  border-color: #d4922a;
  color: #f0bb40;
  background: rgba(212,146,42,0.09);
}

.trust-bar {
  display: flex;
  align-items: center;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(212,146,42,0.16);
  animation: fadeUp 1s 0.52s both;
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.trust-item + .trust-item {
  padding-left: 22px;
  margin-left: 22px;
  border-left: 1px solid rgba(212,146,42,0.16);
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: #d4922a;
  line-height: 1;
}
.trust-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6a4520;
}

/* Jobb oldal tag */
.right-tag {
  position: absolute;
  right: 44px;
  bottom: 52px;
  z-index: 10;
  text-align: right;
  animation: fadeUp 1s 0.62s both;
}
.right-tag-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: rgba(245,226,184,0.75);
  line-height: 1.3;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.right-tag-place {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(212,146,42,0.55);
  margin-top: 4px;
}

/* =============================================
   TABLET  (481px – 768px)
   ============================================= */
@media (max-width: 768px) {
  .hero {
    min-height: 520px;
    align-items: flex-end; /* szöveg lejjebb, foto jobban látszik */
  }

  /* Az overlay mobilon teljesebb — szöveg mindig olvasható */
  .hero-overlay {
    background:
      linear-gradient(160deg,
        rgba(15,7,2,0.2) 0%,
        rgba(15,7,2,0.1) 45%,
        rgba(15,7,2,0.3) 70%,
        rgba(15,7,2,0.5) 100%
      );
  }

  .cta-row{
    display: none;
  }

  .content {
    padding: 48px 32px 80px 32px;
    max-width: 100%;
  }

  .desc {
    max-width: 100%;
  }

  /* right-tag: kisebb és máshol */
  .right-tag {
    right: 24px;
    bottom: 28px;
  }
  .right-tag-name { font-size: 16px; }
}

/* =============================================
   MOBIL  (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero {
    min-height: 0;          /* auto — tartalom dönti el */
    align-items: flex-end;
  }

  /* Fotó középre igazítva, arcok látszódnak */
  .hero-photo {
    opacity: 0.50;
    background-position: center center;
  }

  /* Alulról sötétül — szöveg olvasható, fotó felső fele szabad */
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(15,7,2,0.10) 0%,
        rgba(15,7,2,0.2) 50%,
        rgba(15,7,2,0.4) 100%
      );
  }

  .content {
    padding: 28px 20px 48px 20px;
    max-width: 100%;
    width: 100%;
  }

  /* Eyebrow megmarad, de kisebb */
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.26em;
    margin-bottom: 14px;
  }
  .eyebrow-line { width: 22px; }

  .headline {
    font-size: clamp(28px, 9vw, 36px);
    margin-bottom: 6px;
  }

  .subtitle {
    font-size: clamp(14px, 4.5vw, 18px);
    margin-bottom: 20px;
  }

  .sep { margin-bottom: 20px; }

  /* Leírás és trust bar elrejtve mobilon */
  .desc  { display: none; }
  .trust-bar { display: none; }

  /* Gombok egymás alatt, teljes szélesség */
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .btn-main,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }

  /* right-tag mobilon középre, alulra */
  .right-tag {
    right: 0;
    left: 0;
    bottom: 14px;
    text-align: center;
  }
  .right-tag-name { font-size: 13px; }
  .right-tag-place { font-size: 8px; }
}

/* =============================================
   NAGY KÉPERNYŐ  (1280px+)
   ============================================= */
@media (min-width: 1280px) {
  .hero { min-height: 640px; }
  .content {
    padding: 80px 56px 80px 72px;
    max-width: 620px;
  }
}


.hero-photo {
  background-image: url('/assets/images/Neked-Sutom-Bajai-Langosozo-1.jpg');
  background-position: center 50%;
}

.szorp-showcase{
  display: none !important;
}


