/* ================================================================
   LA TRATTORIA – Custom Styles für Divi 5 Child Theme
   ================================================================
   Alle Klassen mit lt- Prefix um Konflikte mit Divi zu vermeiden.
   ================================================================ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Farben */
  --lt-bg: #0C0A08;
  --lt-bg-warm: #1A1510;
  --lt-bg-card: #15120E;
  --lt-gold: #C9A96E;
  --lt-gold-light: #E2C992;
  --lt-gold-dim: #8B7340;
  --lt-cream: #F5EDE0;
  --lt-cream-muted: #BFB5A3;
  --lt-text: #E8E0D4;
  --lt-text-muted: #9A8F80;
  --lt-accent-red: #8B2F2F;
  --lt-line: rgba(201, 169, 110, 0.15);

  /* Typografie */
  --lt-font-display: 'Cormorant Garamond', Georgia, serif;
  --lt-font-body: 'Outfit', system-ui, sans-serif;

  /* Easings */
  --lt-ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --lt-ease-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Spacing */
  --lt-section-pad: clamp(5rem, 8vw, 8rem);
  --lt-container: 1200px;
}

/* ─── GLOBAL RESETS FÜR DIVI ─── */
/* WICHTIG: 'background' Shorthand statt nur 'background-color' verwenden!
   Divi setzt body { background-size:cover; background-attachment:fixed; background-position:50% 0% }
   die einen subtilen Rendering-Unterschied zur HTML-Vorlage erzeugen.
   Der Shorthand setzt ALLE bg-Properties zurück. */
body.lt-theme {
  background: var(--lt-bg) !important;
  color: var(--lt-text);
  font-family: var(--lt-font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.lt-theme #page-container {
  background: var(--lt-bg) !important;
}

/* html-Element: Hintergrund + Scroll-Verhalten wie in der HTML-Vorlage */
html {
  background: var(--lt-bg) !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Scrollbar – auf html UND body für maximale Kompatibilität */
html,
body.lt-theme {
  scrollbar-width: thin;
  scrollbar-color: var(--lt-gold-dim) var(--lt-bg);
}
html::-webkit-scrollbar,
body.lt-theme::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track,
body.lt-theme::-webkit-scrollbar-track { background: var(--lt-bg); }
html::-webkit-scrollbar-thumb,
body.lt-theme::-webkit-scrollbar-thumb { background: var(--lt-gold-dim); border-radius: 3px; }

/* Sections overflow hidden (Startseite) – NICHT auf der Speisekarte,
   da overflow:hidden sticky positioning killt */
body.lt-theme .et_pb_section {
  overflow: hidden;
}

/* Divi flex-section Fix: align-items:center schrumpft Kinder auf content-width.
   Nur für Sections mit Full-Width-Inhalten (Hero, Selezione). */
body.lt-theme .et_pb_section:has(.lt-hero) > .et_pb_row,
body.lt-theme .et_pb_section:has(.lt-selezione) > .et_pb_row,
body.lt-theme .et_pb_section:has(.lt-ta-widget) > .et_pb_row {
  width: 100% !important;
  max-width: 100% !important;
}

/* Speisekarte: overflow visible für sticky Controls + Cat-Nav */
body.lt-theme.page-speisekarte .et_pb_section {
  overflow: visible !important;
}
body.lt-theme.page-speisekarte .et_pb_row {
  overflow: visible !important;
}
body.lt-theme.page-speisekarte .et_pb_column {
  overflow: visible !important;
}
body.lt-theme.page-speisekarte .et_pb_code {
  overflow: visible !important;
}
body.lt-theme.page-speisekarte .et_pb_code_inner {
  overflow: visible !important;
}

/* Code-Module in Flex-Spalten strecken (für gleiche Kartenhöhen) */
body.lt-theme .et_flex_column > .et_pb_code {
  flex-grow: 1;
}

body.lt-theme .et_pb_code .et_pb_code_inner {
  height: 100%;
}

/* ─── TYPOGRAFIE OVERRIDES FÜR DIVI ─── */
body.lt-theme h1,
body.lt-theme h2,
body.lt-theme h3,
body.lt-theme h4 {
  font-family: var(--lt-font-display) !important;
  color: var(--lt-cream);
  font-weight: 300;
  line-height: 1.15;
}

body.lt-theme h1 { font-size: clamp(3.5rem, 10vw, 8rem); }
body.lt-theme h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
body.lt-theme h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

body.lt-theme h1 em,
body.lt-theme h2 em,
body.lt-theme h3 em {
  font-style: italic;
  color: var(--lt-gold);
  font-weight: 300;
}

body.lt-theme p,
body.lt-theme .et_pb_text_inner {
  font-family: var(--lt-font-body) !important;
  color: var(--lt-cream-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ─── PRELOADER ─── */
.lt-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--lt-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.lt-preloader-text {
  animation: lt-preloader-pulse 1.5s ease-in-out infinite;
}

.lt-preloader-logo {
  width: clamp(200px, 40vw, 380px);
  height: auto;
  display: block;
}

.lt-preloader-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lt-gold), transparent);
  animation: lt-preloader-line 1.5s ease-in-out infinite;
}

.lt-preloader.lt-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s var(--lt-ease-expo), visibility 0.8s;
}

@keyframes lt-preloader-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes lt-preloader-line {
  0% { transform: scaleX(0.3); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0.3); }
}

/* ─── FILM GRAIN OVERLAY ─── */
.lt-grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── DIVI DEFAULT HEADER VERSTECKEN ─── */
body.lt-theme #main-header,
body.lt-theme #top-header {
  display: none !important;
}

/* ─── CUSTOM NAVIGATION (eingefügt per functions.php) ─── */
.lt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(12,10,8,0.95) 0%, transparent 100%);
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s;
}

.lt-nav.lt-scrolled {
  background: rgba(12,10,8,0.97);
  padding: 1rem 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lt-line);
}

.lt-nav-logo {
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lt-nav-logo-img {
  width: auto;
  height: 28px;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

/* Auf der Startseite: Logo erst beim Scrollen einblenden */
body.home .lt-nav:not(.lt-scrolled) .lt-nav-logo {
  opacity: 0;
  pointer-events: none;
}

.lt-nav-logo span {
  font-weight: 300;
  color: var(--lt-cream-muted);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  display: block;
  margin-top: 0.25rem;
}

.lt-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
  align-items: center;
}

.lt-nav-links li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.lt-nav-links li::before,
.lt-nav-links li::marker {
  display: none !important;
  content: none !important;
}

.lt-nav-links a {
  color: var(--lt-cream-muted);
  text-decoration: none;
  font-family: var(--lt-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
}

.lt-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--lt-gold);
  transition: width 0.4s var(--lt-ease-expo);
}

.lt-nav-links a:hover { color: var(--lt-gold); }
.lt-nav-links a:hover::after { width: 100%; }

.lt-nav-cta {
  padding: 0.6rem 1.8rem !important;
  border: 1px solid var(--lt-gold-dim) !important;
  color: var(--lt-gold) !important;
  transition: all 0.4s var(--lt-ease-expo) !important;
}

.lt-nav-cta:hover {
  background: var(--lt-gold) !important;
  color: var(--lt-bg) !important;
}

.lt-nav-cta::after { display: none !important; }

/* Hamburger */
.lt-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px; height: 22px;
  position: relative;
  z-index: 10001;
}

.lt-hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--lt-gold);
  position: absolute; left: 0;
  transition: all 0.35s var(--lt-ease-expo);
}

.lt-hamburger span:nth-child(1) { top: 0; }
.lt-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.lt-hamburger span:nth-child(3) { bottom: 0; }

.lt-hamburger.lt-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.lt-hamburger.lt-open span:nth-child(2) { opacity: 0; }
.lt-hamburger.lt-open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile Menu Overlay */
.lt-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12,10,8,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--lt-ease-expo);
}

.lt-mobile-menu.lt-open { opacity: 1; visibility: visible; }

.lt-mobile-menu a {
  font-family: var(--lt-font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--lt-cream);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.lt-mobile-menu a:hover { color: var(--lt-gold); }

/* Nav Responsive */
@media (max-width: 980px) {
  .lt-nav { padding: 1.2rem 1.5rem; }
  .lt-nav.lt-scrolled { padding: 0.8rem 1.5rem; }
  .lt-nav-links { display: none; }
  .lt-hamburger { display: block; }
  .lt-nav-logo-img { height: 20px; }
  .lt-nav-logo span { font-size: 0.6rem; margin-top: 0.15rem; }
}

/* ─── DIVI SEKTIONEN ─── */
/* Hintergrundfarben werden direkt in der Divi JSON gesetzt (korrekte Werte: #1A1510 / #0C0A08).
   Hier nur ergänzende Styles die nicht in der JSON möglich sind. */
body.lt-theme .et_pb_section {
  background-color: transparent !important;
}

/* Booking Section Ornament – subtile radiale Goldtöne wie in der HTML-Vorlage */
body.lt-theme .et_pb_section_5 {
  position: relative;
}

body.lt-theme .et_pb_section_5::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,169,110,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(139,47,47,0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Section Padding */
body.lt-theme .lt-section-pad {
  padding-top: var(--lt-section-pad) !important;
  padding-bottom: var(--lt-section-pad) !important;
}

/* ─── SECTION LABELS & TITLES ─── */
.lt-section-label {
  font-family: var(--lt-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lt-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lt-section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--lt-gold-dim);
}

/* Centered section labels: hide the ::before line, center with justify-content */
.lt-section-label[style*="text-align:center"],
.lt-section-label[style*="text-align: center"],
.lt-section-label-center {
  justify-content: center;
}

/* Gold Ornament Line */
.lt-ornament-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lt-gold), transparent);
  margin: 0 auto 3rem;
}

/* ─── SCROLL REVEAL KLASSEN ─── */
.no-js .lt-reveal,
.no-js .lt-reveal-left,
.no-js .lt-reveal-right,
.no-js .lt-reveal-scale {
  opacity: 1 !important;
  transform: none !important;
}

.lt-reveal,
.lt-reveal-left,
.lt-reveal-right,
.lt-reveal-scale {
  will-change: opacity, transform;
}

/* ─── BUTTONS ─── */
.lt-btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--lt-gold);
  color: var(--lt-bg) !important;
  font-family: var(--lt-font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--lt-ease-expo);
}

.lt-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lt-gold-light);
  transform: translateX(-100%);
  transition: transform 0.5s var(--lt-ease-expo);
}

.lt-btn-primary:hover::before {
  transform: translateX(0);
}

.lt-btn-primary span {
  position: relative;
  z-index: 1;
}

.lt-btn-secondary {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  color: var(--lt-cream-muted) !important;
  font-family: var(--lt-font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  border: 1px solid var(--lt-line);
  cursor: pointer;
  transition: all 0.5s var(--lt-ease-expo);
}

.lt-btn-secondary:hover {
  border-color: var(--lt-gold-dim);
  color: var(--lt-gold) !important;
}

/* Button group flex container */
.lt-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Divi Button Override */
body.lt-theme .et_pb_button {
  font-family: var(--lt-font-body) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  padding: 1rem 3rem !important;
  border-radius: 0 !important;
  transition: all 0.5s var(--lt-ease-expo) !important;
}

body.lt-theme .et_pb_button.lt-btn-gold {
  background: var(--lt-gold) !important;
  color: var(--lt-bg) !important;
  border: none !important;
}

body.lt-theme .et_pb_button.lt-btn-gold:hover {
  background: var(--lt-gold-light) !important;
}

body.lt-theme .et_pb_button.lt-btn-outline {
  background: transparent !important;
  color: var(--lt-cream-muted) !important;
  border: 1px solid var(--lt-line) !important;
}

body.lt-theme .et_pb_button.lt-btn-outline:hover {
  border-color: var(--lt-gold-dim) !important;
  color: var(--lt-gold) !important;
}

/* ─── HERO – THEATRICAL CURTAIN REVEAL ─── */
/* width:100% nötig weil Divi's flex-section align-items:center
   den Container sonst auf content-width schrumpft */
.lt-hero {
  width: 100%;
  position: relative;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--lt-bg);
}

/* Background image – revealed after curtain opens */
.lt-hero-img {
  position: absolute;
  inset: -30px;
  z-index: 0;
  background: url('https://latrattoria-pi3ekwblqr.live-website.com/wp-content/uploads/2026/03/DSC01162_fullres.jpg') center center / cover no-repeat;
  filter: brightness(0.3) contrast(1.15) sepia(0.1);
  transform: scale(1.08);
  transition: transform 0.15s ease-out;
}

/* Zoom settle – only plays after .lt-hero-playing is added */
.lt-hero.lt-hero-playing .lt-hero-img {
  animation: lt-heroZoomSettle 4s var(--lt-ease-expo) 1s forwards;
}

@keyframes lt-heroZoomSettle {
  to { transform: scale(1); }
}

/* Curtain panels that slide apart */
.lt-hero-curtain-left,
.lt-hero-curtain-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background: var(--lt-bg);
  z-index: 3;
}

.lt-hero-curtain-left { left: 0; }
.lt-hero-curtain-right { right: 0; }

.lt-hero.lt-hero-playing .lt-hero-curtain-left {
  animation: lt-curtainLeft 1.8s var(--lt-ease-expo) forwards;
}

.lt-hero.lt-hero-playing .lt-hero-curtain-right {
  animation: lt-curtainRight 1.8s var(--lt-ease-expo) forwards;
}

@keyframes lt-curtainLeft {
  to { transform: translateX(-105%); }
}

@keyframes lt-curtainRight {
  to { transform: translateX(105%); }
}

/* Gold line in center during curtain reveal */
.lt-hero-reveal-line {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 50%;
  width: 1px;
  background: var(--lt-gold);
  z-index: 4;
  transform: translateX(-50%) scaleY(0);
  opacity: 1;
}

.lt-hero.lt-hero-playing .lt-hero-reveal-line {
  animation: lt-revealLine 0.6s var(--lt-ease-expo) forwards,
             lt-revealLineFade 0.5s var(--lt-ease-expo) 1s forwards;
}

@keyframes lt-revealLine {
  to { transform: translateX(-50%) scaleY(1); }
}

@keyframes lt-revealLineFade {
  to { opacity: 0; }
}

/* Dark gradient overlay after curtains open */
.lt-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(12,10,8,0.65) 0%, rgba(12,10,8,0.25) 70%, rgba(12,10,8,0.15) 100%),
    linear-gradient(0deg, var(--lt-bg) 0%, rgba(12,10,8,0.3) 20%, transparent 50%),
    linear-gradient(180deg, rgba(12,10,8,0.5) 0%, transparent 20%);
  opacity: 0;
}

.lt-hero.lt-hero-playing .lt-hero-overlay {
  animation: lt-fadeIn 1.5s ease 1.8s forwards;
}

/* Film grain */
.lt-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* ─── HERO CONTENT ─── */
.lt-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Soft blur cloud behind text */
.lt-hero-content::before {
  content: '';
  position: absolute;
  top: -5%;
  left: 10%;
  right: 10%;
  bottom: -5%;
  background: radial-gradient(ellipse at 50% 50%, rgba(12,10,8,0.45) 0%, transparent 70%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
  opacity: 0;
}

.lt-hero.lt-hero-playing .lt-hero-content::before {
  animation: lt-fadeIn 1.5s ease 1.7s forwards;
}

/* Tagline: "Cucina Italiana" */
.lt-hero-tagline {
  font-family: var(--lt-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--lt-gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
}

.lt-hero-tagline::before,
.lt-hero-tagline::after {
  content: '';
  width: 35px;
  height: 1px;
  background: var(--lt-gold);
  opacity: 0.6;
}

/* Hero Logo – Bild statt Text */
h1.lt-hero-title {
  margin-bottom: 0.8rem !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.lt-hero-logo-img {
  width: clamp(260px, 50vw, 620px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 80px rgba(201,169,110,0.2)) drop-shadow(0 2px 30px rgba(0,0,0,0.7));
}

/* "Gütersloh · Berliner Str. 126" */
.lt-hero-location {
  font-family: var(--lt-font-body);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--lt-text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
}

.lt-hero-subtitle {
  font-family: var(--lt-font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--lt-cream-muted);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 15px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(15px);
}

/* Altes h1 Layout verstecken – nur wenn es NICHT die neue .lt-hero-title Klasse hat */
.lt-hero h1:not(.lt-hero-title) { display: none; }

/* CTA Buttons – keep existing lt-btn-primary / lt-btn-secondary styles */
.lt-hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
}

/* Scroll indicator */
.lt-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 5;
  opacity: 0;
}

.lt-hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lt-text-muted);
}

.lt-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--lt-gold-dim), transparent);
  animation: lt-scroll-pulse 2s ease-in-out infinite;
}

@keyframes lt-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes lt-fadeIn { to { opacity: 1; } }
@keyframes lt-fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Hide old elements that are no longer used */
.lt-hero-bg,
.lt-hero-ornament {
  display: none;
}

/* ─── WILLKOMMEN / ABOUT ─── */
/* Divi-Row: Text vertikal zentriert zum Bild + größerer Gap wie im Template */
.et_pb_row:has(.lt-about-text) {
  align-items: center !important;
  gap: 6rem !important;
}

.lt-about-text p {
  color: var(--lt-cream-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

/* ─── BILD MIT OFFSET BORDER ─── */
.lt-image-offset {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.lt-image-offset::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--lt-gold-dim);
  z-index: 1;
  pointer-events: none;
}

.lt-image-offset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) brightness(0.85) contrast(1.1);
  transition: transform 1.5s var(--lt-ease-expo);
}

.lt-image-offset:hover img {
  transform: scale(1.05);
}

/* ─── ZITAT / HIGHLIGHT ─── */
.lt-highlight {
  font-family: var(--lt-font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--lt-gold-light);
  line-height: 1.6;
  border-left: 2px solid var(--lt-gold-dim);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* ─── KARTEN (Öffnungszeiten) ─── */
.lt-card {
  padding: 2rem 2rem;
  border: 1px solid var(--lt-line);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--lt-ease-expo);
  height: 100%;
  text-align: center;
  min-width: 180px;
}

.lt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.lt-card:hover::before { opacity: 1; }
.lt-card:hover {
  border-color: var(--lt-gold-dim);
  transform: translateY(-4px);
}

/* Öffnungszeiten Spezifisch – body.lt-theme für Spezifität gegen globale h3/p Regeln */
body.lt-theme .lt-card h3 {
  font-family: var(--lt-font-display) !important;
  font-size: 1.15rem;
  color: var(--lt-gold) !important;
  margin-bottom: 0.8rem;
  font-weight: 500 !important;
}

body.lt-theme .lt-card p {
  font-size: 0.85rem;
  color: var(--lt-cream-muted) !important;
  line-height: 1.8;
  white-space: nowrap;
}

/* Montag Ruhetag – !important nötig da body.lt-theme p den color überschreibt */
body.lt-theme p.lt-hours-closed {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lt-accent-red) !important;
  text-align: center;
  margin-top: 2.5rem;
}

/* Divi column stretch for equal height cards */
body.lt-theme .et_pb_code .lt-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ─── MENÜ KARTEN ─── */
.lt-card-menu {
  padding: 3rem 2rem;
  border: 1px solid var(--lt-line);
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--lt-ease-expo);
}

.lt-card-menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lt-gold);
  transform: scaleX(0);
  transition: transform 0.6s var(--lt-ease-expo);
}

.lt-card-menu:hover {
  border-color: var(--lt-gold-dim);
  transform: translateY(-6px);
}

.lt-card-menu:hover::after {
  transform: scaleX(1);
}

/* Karten-Icon — supports both class names */
.lt-card-icon,
.lt-card-menu-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.6s var(--lt-ease-expo);
}

.lt-card-menu:hover .lt-card-icon,
.lt-card-menu:hover .lt-card-menu-icon {
  transform: scale(1.15) rotate(-5deg);
}

.lt-card-menu h4 {
  font-family: var(--lt-font-display) !important;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--lt-cream);
  margin-bottom: 0.5rem;
}

.lt-card-menu p {
  font-size: 0.8rem;
  color: var(--lt-text-muted);
  line-height: 1.6;
}

/* ─── BEWERTUNGEN ─── */
.lt-reviews-stars {
  color: var(--lt-gold);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.lt-reviews-score {
  font-family: var(--lt-font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--lt-cream);
  margin-bottom: 0.5rem;
}

.lt-reviews-count {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lt-text-muted);
  margin-bottom: 4rem;
}

.lt-review-card {
  padding: 3rem;
  border: 1px solid var(--lt-line);
  text-align: left;
  margin-bottom: 1.5rem;
  transition: all 0.5s var(--lt-ease-expo);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lt-review-card:hover {
  border-color: var(--lt-gold-dim);
}

.lt-review-card .lt-review-author {
  margin-top: auto;
}

.lt-review-quote {
  font-family: var(--lt-font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--lt-cream-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.lt-review-quote::before {
  content: '\201C';
  font-family: var(--lt-font-display);
  font-size: 4rem;
  color: var(--lt-gold-dim);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  line-height: 1;
}

.lt-review-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lt-gold);
}

.lt-review-source {
  font-size: 0.7rem;
  color: var(--lt-text-muted);
  margin-top: 0.3rem;
}

/* ─── BOOKING FORM SEKTION ─── */
.lt-booking {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.lt-booking .lt-section-label {
  justify-content: center;
}

.lt-booking .lt-section-label::before {
  display: none;
}

/* Ornament deaktiviert – funktioniert nicht korrekt innerhalb des 680px Divi-Row-Containers.
   Im HTML-Prototyp ist es ein Section-Kind (volle Breite), aber in Divi sitzt es
   innerhalb des Code-Moduls (680px) und erzeugt einen sichtbaren helleren Streifen. */
.lt-booking-ornament {
  display: none;
}

.lt-booking-intro {
  color: var(--lt-cream-muted);
  font-size: 1rem;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

/* Form Layout */
.lt-booking-form {
  text-align: left;
}

.lt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.lt-form-row.lt-form-row-full {
  grid-template-columns: 1fr;
}

.lt-form-group {
  position: relative;
}

.lt-form-group label {
  display: block;
  font-family: var(--lt-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lt-gold);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.lt-form-group input,
.lt-form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--lt-bg-card);
  border: 1px solid var(--lt-line);
  color: var(--lt-cream);
  font-family: var(--lt-font-body);
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.4s var(--lt-ease-expo), background 0.4s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.lt-form-group input::placeholder {
  color: var(--lt-text-muted);
}

.lt-form-group input:focus,
.lt-form-group select:focus {
  border-color: var(--lt-gold-dim);
  background: rgba(21,18,14,0.9);
}

/* ─── FLATPICKR DARK THEME OVERRIDE – La Trattoria ─── */
/* Flatpickr Alt-Input (das sichtbare Textfeld) */
.lt-form-group .flatpickr-input[readonly] {
  cursor: pointer;
}

/* Kalender-Popup komplett im La Trattoria Stil */
.flatpickr-calendar {
  background: var(--lt-bg-card, #15120E) !important;
  border: 1px solid var(--lt-line, rgba(201,169,110,0.15)) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6) !important;
  border-radius: 0 !important;
  font-family: var(--lt-font-body, 'Outfit', sans-serif) !important;
}

.flatpickr-calendar::before,
.flatpickr-calendar::after {
  display: none !important;
}

/* Monat/Jahr Header */
.flatpickr-months {
  background: transparent !important;
}

.flatpickr-months .flatpickr-month {
  background: transparent !important;
  color: var(--lt-cream, #F5EDE0) !important;
}

.flatpickr-current-month {
  font-family: var(--lt-font-display, 'Cormorant Garamond', serif) !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  color: var(--lt-cream, #F5EDE0) !important;
}

.flatpickr-current-month .numInputWrapper span,
.flatpickr-current-month input.cur-year {
  color: var(--lt-cream, #F5EDE0) !important;
  font-weight: 300 !important;
}

/* Pfeile links/rechts */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: var(--lt-gold, #C9A96E) !important;
  fill: var(--lt-gold, #C9A96E) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: var(--lt-gold, #C9A96E) !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: var(--lt-gold-light, #E2C992) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--lt-gold-light, #E2C992) !important;
}

/* Wochentag-Header (Mo, Di, Mi...) */
.flatpickr-weekdays {
  background: transparent !important;
}

span.flatpickr-weekday {
  background: transparent !important;
  color: var(--lt-gold-dim, #8B7340) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}

/* Tage */
.flatpickr-day {
  color: var(--lt-cream-muted, #BFB5A3) !important;
  border-radius: 0 !important;
  border: 1px solid transparent !important;
  font-weight: 300 !important;
  transition: all 0.2s ease !important;
}

.flatpickr-day:hover {
  background: var(--lt-gold-dim, #8B7340) !important;
  border-color: var(--lt-gold-dim, #8B7340) !important;
  color: var(--lt-bg, #0C0A08) !important;
}

/* Ausgewählter Tag */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--lt-gold, #C9A96E) !important;
  border-color: var(--lt-gold, #C9A96E) !important;
  color: var(--lt-bg, #0C0A08) !important;
  font-weight: 500 !important;
}

/* Heute */
.flatpickr-day.today {
  border-color: var(--lt-gold-dim, #8B7340) !important;
}

.flatpickr-day.today:hover {
  background: var(--lt-gold-dim, #8B7340) !important;
  color: var(--lt-bg, #0C0A08) !important;
}

/* Deaktivierte Tage (Montage!) */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(191,181,163,0.2) !important;
  background: transparent !important;
  border-color: transparent !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
}

/* Tage aus anderem Monat */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(191,181,163,0.15) !important;
}

/* Nummerneingabe für Jahr */
.numInputWrapper:hover {
  background: transparent !important;
}

.numInputWrapper span {
  border: none !important;
}

.numInputWrapper span::after {
  border-bottom-color: var(--lt-gold-dim, #8B7340) !important;
}

.numInputWrapper span.arrowUp::after {
  border-bottom-color: var(--lt-gold-dim, #8B7340) !important;
}

.numInputWrapper span.arrowDown::after {
  border-top-color: var(--lt-gold-dim, #8B7340) !important;
}

/* Flatpickr Animation */
.flatpickr-calendar.open {
  animation: lt-fp-open 0.3s var(--lt-ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}

@keyframes lt-fp-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Person Selector */
.lt-person-selector {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lt-person-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lt-bg-card);
  border: 1px solid var(--lt-line);
  color: var(--lt-cream-muted);
  font-family: var(--lt-font-body);
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.35s var(--lt-ease-expo);
}

.lt-person-btn:hover {
  border-color: var(--lt-gold-dim);
  color: var(--lt-gold);
}

.lt-person-btn.lt-active {
  background: var(--lt-gold);
  border-color: var(--lt-gold);
  color: var(--lt-bg);
  font-weight: 500;
}

/* Custom Personen-Input (erscheint bei 8+) */
.lt-person-custom-input {
  display: none;
  margin-top: 0.75rem;
  width: 100%;
  max-width: 260px;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--lt-gold);
  border-radius: 4px;
  color: var(--lt-cream);
  font-family: var(--lt-font-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s ease;
}
.lt-person-custom-input:focus {
  border-color: var(--lt-cream);
}
.lt-person-custom-input::placeholder {
  color: rgba(225,218,203,0.4);
}
/* Spinner-Arrows im Number-Input dezent stylen */
.lt-person-custom-input::-webkit-inner-spin-button,
.lt-person-custom-input::-webkit-outer-spin-button {
  opacity: 0.5;
}

/* Time Slots */
.lt-time-period-label {
  font-family: var(--lt-font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lt-text-muted);
  margin-bottom: 0.5rem;
  margin-top: 0.8rem;
}

.lt-time-slots {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lt-time-slot {
  padding: 0.7rem 1.2rem;
  background: var(--lt-bg-card);
  border: 1px solid var(--lt-line);
  color: var(--lt-cream-muted);
  font-family: var(--lt-font-body);
  font-size: 0.85rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.35s var(--lt-ease-expo);
}

.lt-time-slot:hover {
  border-color: var(--lt-gold-dim);
  color: var(--lt-gold);
}

.lt-time-slot.lt-active {
  background: var(--lt-gold);
  border-color: var(--lt-gold);
  color: var(--lt-bg);
  font-weight: 500;
}

.lt-time-slots-empty {
  font-family: var(--lt-font-body);
  font-size: 0.85rem;
  color: var(--lt-text-muted);
  font-style: italic;
  padding: 1rem 0;
}

/* Submit Button */
.lt-booking-submit {
  width: 100%;
  padding: 1.2rem;
  margin-top: 2rem;
  background: var(--lt-gold);
  color: var(--lt-bg);
  font-family: var(--lt-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--lt-ease-expo);
  position: relative;
  overflow: hidden;
}

.lt-booking-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lt-gold-light);
  transform: translateX(-100%);
  transition: transform 0.5s var(--lt-ease-expo);
}

.lt-booking-submit:hover::before {
  transform: translateX(0);
}

.lt-booking-submit span {
  position: relative;
  z-index: 1;
}

.lt-booking-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.lt-booking-submit:disabled::before {
  display: none;
}

/* Loading State */
.lt-booking-submit.lt-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.lt-booking-submit.lt-loading span {
  opacity: 0.6;
}

/* Error Message */
.lt-booking-error {
  background: rgba(139,47,47,0.1);
  border: 1px solid rgba(139,47,47,0.3);
  color: #d9a0a0;
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  animation: lt-errorIn 0.4s var(--lt-ease-expo);
}

.lt-booking-error.lt-fade-out {
  opacity: 0;
  transition: opacity 0.4s;
}

@keyframes lt-errorIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* reCAPTCHA Badge verstecken (erlaubt mit Texthinweis) */
.grecaptcha-badge { visibility: hidden !important; }
.lt-recaptcha-notice {
  margin-top: 1rem;
  font-family: var(--lt-font-body);
  font-size: 0.7rem;
  color: var(--lt-text-muted);
  opacity: 0.5;
  text-align: center;
  line-height: 1.5;
}
.lt-recaptcha-notice a {
  color: var(--lt-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Success State */
.lt-booking-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--lt-success, #4A7C59);
  background: rgba(74,124,89,0.05);
}

.lt-booking-success.lt-show {
  display: block;
}

.lt-booking-success-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--lt-success, #4A7C59);
}

.lt-booking-success h3 {
  font-family: var(--lt-font-display) !important;
  font-size: 2rem;
  font-weight: 300;
  color: var(--lt-cream);
  margin-bottom: 1rem;
}

.lt-booking-success p {
  color: var(--lt-cream-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Alternative Contact */
.lt-booking-alt {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--lt-line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.lt-booking-alt-item {
  text-decoration: none;
  color: var(--lt-cream-muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.lt-booking-alt-item:hover {
  color: var(--lt-gold);
}

.lt-booking-alt-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--lt-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s var(--lt-ease-expo);
}

.lt-booking-alt-item:hover .lt-booking-alt-icon {
  border-color: var(--lt-gold-dim);
}

.lt-booking-alt-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lt-gold);
  margin-bottom: 0.15rem;
}

/* Legacy CTA support */
.lt-cta {
  text-align: center;
  position: relative;
}

.lt-cta .lt-section-label {
  justify-content: center;
}

.lt-cta .lt-section-label::before {
  display: none;
}

.lt-cta p {
  color: var(--lt-cream-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.lt-cta-phone {
  font-family: var(--lt-font-display);
  font-size: 2rem;
  color: var(--lt-gold);
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
  transition: color 0.3s;
}

.lt-cta-phone:hover {
  color: var(--lt-gold-light);
}

/* ─── DIVI DEFAULT FOOTER VERSTECKEN ─── */
body.lt-theme #main-footer {
  display: none !important;
}

/* ─── CUSTOM FOOTER (eingefügt per functions.php) ─── */
.lt-footer {
  background: var(--lt-bg);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid var(--lt-line);
  font-family: var(--lt-font-body);
}

.lt-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.lt-footer-brand {
  margin-bottom: 1rem;
}

.lt-footer-logo {
  width: 220px;
  height: auto;
  display: block;
}

.lt-footer-brand-sub {
  color: var(--lt-text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

.lt-footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.lt-footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--lt-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lt-text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.4s var(--lt-ease-expo);
}

.lt-footer-social a:hover {
  border-color: var(--lt-gold);
  color: var(--lt-gold);
  transform: translateY(-3px);
}

.lt-footer-heading {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lt-gold);
  margin-bottom: 1.5rem;
}

.lt-footer-links {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.lt-footer-links li {
  list-style: none !important;
  margin-bottom: 0.8rem;
  color: var(--lt-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.lt-footer-links li::before,
.lt-footer-links li::marker {
  display: none !important;
  content: none !important;
}

.lt-footer-links a {
  color: var(--lt-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

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

.lt-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--lt-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--lt-text-muted);
  letter-spacing: 0.1em;
}

.lt-footer-bottom a {
  color: var(--lt-text-muted);
  text-decoration: none;
}

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

/* Footer Responsive */
@media (max-width: 900px) {
  .lt-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .lt-footer {
    padding: 3rem 1.5rem 2rem;
  }
  .lt-footer-grid {
    grid-template-columns: 1fr;
  }
  .lt-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── MOMENTI SOCIAL CINEMA ─── */
.lt-momenti {
  background: var(--lt-bg);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--lt-line);
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.lt-momenti-header {
  text-align: center;
  padding: 0 3rem 4rem;
  position: relative;
  z-index: 2;
}

.lt-momenti-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--lt-font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 300;
  color: rgba(201,169,110,0.04);
  white-space: nowrap;
  letter-spacing: 0.15em;
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
}

/* Film Strip */
.lt-film-strip-wrapper {
  position: relative;
  padding: 2rem 0;
}

.lt-film-strip-wrapper::before,
.lt-film-strip-wrapper::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--lt-gold-dim) 0px,
    var(--lt-gold-dim) 12px,
    transparent 12px,
    transparent 24px
  );
  opacity: 0.3;
  z-index: 3;
}

.lt-film-strip-wrapper::before { top: 0; }
.lt-film-strip-wrapper::after { bottom: 0; }

.lt-film-sprockets {
  position: absolute;
  left: 0; right: 0;
  height: 20px;
  display: flex;
  gap: 0;
  z-index: 2;
  pointer-events: none;
}

.lt-film-sprockets.lt-top { top: 6px; }
.lt-film-sprockets.lt-bottom { bottom: 6px; }

.lt-film-sprocket {
  width: 16px; height: 12px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 2px;
  flex-shrink: 0;
  margin: 0 22px;
}

.lt-film-track {
  display: flex;
  gap: 0;
  will-change: transform;
  padding: 28px 0;
  animation: lt-filmScroll 60s linear infinite;
}

.lt-film-track:hover {
  animation-play-state: paused;
}

/* Video Lazy-Load: versteckt bis IntersectionObserver .lt-video-loaded setzt */
.lt-film-frame video {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lt-film-frame video.lt-video-loaded {
  opacity: 1;
}

.lt-film-frame {
  flex: 0 0 auto;
  width: 320px;
  position: relative;
  padding: 0 4px;
}

.lt-film-frame-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--lt-bg-card) 0%, #1f1a14 50%, var(--lt-bg-card) 100%);
  border-left: 1px solid rgba(201,169,110,0.08);
  border-right: 1px solid rgba(201,169,110,0.08);
}

.lt-film-frame-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(139,115,64,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.lt-film-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.1) brightness(0.9) contrast(1.1);
  transition: all 1.2s var(--lt-ease-expo);
  position: relative;
  z-index: 1;
}

.lt-film-frame:hover img {
  filter: sepia(0) brightness(1) contrast(1.05);
  transform: scale(1.06);
}

.lt-film-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,10,8,0.7) 0%, transparent 40%, transparent 60%, rgba(12,10,8,0.3) 100%);
  pointer-events: none;
  transition: opacity 0.6s;
  z-index: 2;
}

.lt-film-frame:hover .lt-film-frame-overlay {
  opacity: 0.4;
}

.lt-film-frame-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lt-cream-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.6s var(--lt-ease-expo);
  z-index: 3;
}

.lt-film-frame:hover .lt-film-frame-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Video in film frame */
.lt-film-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.1) brightness(0.9) contrast(1.1);
  transition: all 1.2s var(--lt-ease-expo);
  position: relative;
  z-index: 1;
}

.lt-film-frame:hover video {
  filter: sepia(0) brightness(1) contrast(1.05);
  transform: scale(1.06);
}

/* Platform Badge (top-left) */
.lt-film-frame-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  width: 28px; height: 28px;
  background: rgba(12,10,8,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: all 0.4s var(--lt-ease-expo);
}

.lt-film-frame:hover .lt-film-frame-badge {
  background: rgba(12,10,8,0.9);
  border-color: rgba(201,169,110,0.4);
}

.lt-film-frame-badge svg {
  width: 14px; height: 14px;
  fill: var(--lt-gold);
}

/* Engagement Stats (bottom-right) */
.lt-film-frame-stats {
  position: absolute;
  bottom: 0.8rem; right: 0.8rem;
  display: flex;
  gap: 0.6rem;
  z-index: 4;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.5s var(--lt-ease-expo);
}

.lt-film-frame:hover .lt-film-frame-stats {
  opacity: 1;
  transform: translateY(0);
}

.lt-film-stat {
  font-family: var(--lt-font-body);
  font-size: 0.65rem;
  color: var(--lt-cream);
  background: rgba(12,10,8,0.7);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.05em;
}

/* Momenti subtitle */
.lt-momenti-subtitle {
  font-family: var(--lt-font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--lt-cream-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Make film-frame a link */
a.lt-film-frame {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Film Grain – leichtes CSS-Pattern statt feTurbulence SVG.
   SVG feTurbulence + mix-blend-mode:overlay verursachte Scroll-Lag
   weil der Browser jeden Frame neu compositen musste. */
.lt-film-strip-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(201,169,110,0.06) 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(201,169,110,0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 5px 5px, 9px 9px, 7px 7px;
}

/* Social CTAs */
.lt-momenti-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  padding: 0 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.lt-momenti-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  border: 1px solid var(--lt-line);
  text-decoration: none;
  color: var(--lt-cream);
  transition: all 0.6s var(--lt-ease-expo);
  position: relative;
  overflow: hidden;
}

.lt-momenti-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.lt-momenti-cta:hover {
  border-color: var(--lt-gold-dim);
  transform: translateY(-3px);
}

.lt-momenti-cta:hover::before { opacity: 1; }

.lt-momenti-cta svg {
  width: 24px; height: 24px;
  fill: var(--lt-gold);
  flex-shrink: 0;
  transition: transform 0.5s var(--lt-ease-expo);
}

.lt-momenti-cta:hover svg { transform: scale(1.15); }

.lt-momenti-cta-text {
  display: flex;
  flex-direction: column;
}

.lt-momenti-cta-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lt-gold);
  margin-bottom: 0.15rem;
}

.lt-momenti-cta-handle {
  font-family: var(--lt-font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--lt-cream);
}

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

/* ─── WHATSAPP FAB ─── */
.lt-wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--lt-ease-expo), transform 0.6s var(--lt-ease-expo);
}

.lt-wa-fab.lt-visible {
  opacity: 1;
  transform: translateY(0);
}

.lt-wa-fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lt-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s var(--lt-ease-expo);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  cursor: pointer;
}

.lt-wa-fab-btn svg {
  width: 26px; height: 26px;
  fill: var(--lt-bg);
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--lt-ease-expo);
}

.lt-wa-fab:hover .lt-wa-fab-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201,169,110,0.4);
}

.lt-wa-fab:hover .lt-wa-fab-btn svg {
  transform: scale(1.1) rotate(-8deg);
}

/* Pulse rings */
.lt-wa-fab-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--lt-gold);
  opacity: 0;
  animation: lt-waPulse 3s ease-out infinite;
}

.lt-wa-fab-btn::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--lt-gold);
  opacity: 0;
  animation: lt-waPulse 3s ease-out 0.5s infinite;
}

@keyframes lt-waPulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Tooltip */
.lt-wa-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--lt-bg-card);
  border: 1px solid var(--lt-line);
  padding: 0.6rem 1rem;
  white-space: nowrap;
  font-size: 0.75rem;
  color: var(--lt-cream);
  letter-spacing: 0.05em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--lt-ease-expo);
}

.lt-wa-fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--lt-bg-card);
  border-right: 1px solid var(--lt-line);
  border-top: 1px solid var(--lt-line);
}

.lt-wa-fab:hover .lt-wa-fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Momenti + WhatsApp Responsive */
@media (max-width: 900px) {
  .lt-film-frame { width: 260px; }
  .lt-momenti-header { padding: 0 1.5rem 3rem; }
  .lt-momenti-ctas { padding: 0 1.5rem; gap: 1rem; }
  .lt-momenti { padding: 4rem 0 5rem; }
  .lt-wa-fab { bottom: 1.2rem; right: 1.2rem; }
}

/* Momenti Mobile: JS-Auto-Scroll + Touch-Scroll */
@media (max-width: 980px) {
  .lt-film-strip-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .lt-film-strip-wrapper::-webkit-scrollbar {
    display: none;
  }

  .lt-film-track {
    animation: none;
    width: max-content;
  }

  .lt-film-frame { width: 240px; }

  /* Sprockets mitscrollen */
  .lt-film-sprockets {
    width: max-content;
    min-width: 100%;
  }
}

@media (max-width: 520px) {
  .lt-momenti-ctas { flex-direction: column; gap: 0.8rem; }
  .lt-momenti-cta { width: 100%; justify-content: center; }
}

/* ─── GOLD LINE SEPARATOR ─── */
.lt-gold-sep {
  width: 100%;
  height: 1px;
  background: var(--lt-line);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  body.lt-theme #main-header {
    padding: 1rem 1.5rem;
  }

  .lt-hero-scroll { bottom: 1.5rem; }
  .lt-hero-logo-img { width: clamp(220px, 45vw, 420px); }
  .lt-hero-subtitle { font-size: 0.95rem; max-width: 90%; }

  .lt-image-offset::before {
    top: -10px;
    left: -10px;
  }
}

@media (max-width: 767px) {
  :root {
    --lt-section-pad: 4rem;
  }

  .lt-hero-content {
    padding: 0 1.5rem;
  }

  .lt-hero-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
  }

  .lt-card {
    padding: 1.5rem;
  }

  .lt-review-card {
    padding: 2rem;
  }

  .lt-review-quote {
    font-size: 1rem;
  }

  .lt-btn-primary,
  .lt-btn-secondary {
    padding: 0.8rem 2rem;
    width: 100%;
    text-align: center;
  }

  /* Booking Form Responsive */
  .lt-form-row {
    grid-template-columns: 1fr;
  }

  .lt-booking-alt {
    flex-direction: column;
    gap: 1.2rem;
  }

  .lt-person-btn {
    width: 46px;
    height: 46px;
    font-size: 0.9rem;
  }

  .lt-time-slot {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .lt-hero-logo-img { width: clamp(180px, 60vw, 300px); }

  .lt-hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    gap: 0.8rem;
  }

  /* Auf Mobile: Secondary-Buttons nebeneinander als kompakte Zeile */
  .lt-hero-buttons .lt-btn-secondary {
    font-size: 0.6rem;
    padding: 0.8rem 1.5rem;
  }
}

/* ─── DIVI VISUAL BUILDER FIX ─── */
body.et-fb .lt-preloader,
body.et-fb .lt-grain {
  display: none !important;
}

body.et-fb .lt-reveal,
body.et-fb .lt-reveal-left,
body.et-fb .lt-reveal-right,
body.et-fb .lt-reveal-scale {
  opacity: 1 !important;
  transform: none !important;
}
