/* ================================================================
   ROMANTIC BAR — Multi-Page Site
   Aesthetic: Cinematic Editorial · Dark · Burgundy + Gold + Cream
   ================================================================ */

:root {
  --bg: #0a0506;
  --bg-1: #120709;
  --bg-2: #1a0e10;
  --surface: #1f1216;
  --line: #2a1b1f;
  --line-soft: #1e1418;

  --gold: #d4a853;
  --gold-soft: #b4895a;
  --cream: #e8d5b7;
  --burgundy: #7a1e2c;
  --burgundy-bright: #9a2838;
  --wine: #4a1018;

  --text: #f5e6d0;
  --text-muted: #8a7568;
  --text-faint: #5a4a40;

  --shadow-soft: 0 30px 80px rgba(0,0,0,0.6);
  --shadow-card: 0 24px 60px rgba(0,0,0,0.5), 0 2px 0 rgba(212,168,83,0.04) inset;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'Playfair Display', 'Cormorant Garamond', serif;
  --sans: 'Outfit', 'Helvetica Neue', sans-serif;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1320px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  position: relative;
  min-height: 100vh;
}

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}
.cursor.hover { width: 40px; height: 40px; background: var(--cream); }

@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ================================================================
   AGE GATE
   ================================================================ */
.age-gate {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.age-gate.hidden { display: none; }
.age-gate::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(122,30,44,0.35), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212,168,83,0.08), transparent 60%);
}
.age-content {
  position: relative;
  max-width: 540px;
}
.age-mark {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.3em;
  color: var(--cream);
  margin-bottom: 8px;
}
.age-mark span { color: var(--gold); margin: 0 6px; }
.age-sub {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.age-content h2 {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.age-content h2 .it {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.age-content p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.8;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold-soft);
  padding: 18px 38px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.btn.primary {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.btn.primary:hover {
  background: var(--burgundy-bright);
  border-color: var(--burgundy-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(154,40,56,0.4);
}
.btn:hover {
  background: var(--cream);
  color: var(--bg);
  border-color: var(--cream);
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }
.age-decline {
  background: transparent;
  color: var(--text-faint);
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: none;
  padding: 10px;
  transition: color 0.3s;
}
.age-decline:hover { color: var(--text-muted); }

/* ================================================================
   LOADER
   ================================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.4em;
  color: var(--cream);
}
.loader-mark span { color: var(--gold); margin: 0 4px; }
.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: var(--gold);
  animation: loaderSlide 1.4s var(--ease) infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ================================================================
   PAGE TRANSITION
   ================================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9997;
  transform: translateY(100%);
  pointer-events: none;
}
.page-transition.active {
  animation: pageOut 0.7s var(--ease) forwards;
}
@keyframes pageOut {
  0% { transform: translateY(100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* ================================================================
   TOP NAV — Centered Logo + Horizontal Nav
   ================================================================ */
.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 40px 18px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(10,5,6,0.85) 0%, rgba(10,5,6,0) 100%);
  transition: all 0.4s var(--ease);
}
.top.scrolled {
  background: rgba(10, 5, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 40px 10px;
}

.brand {
  display: inline-block;
  margin-bottom: 14px;
  transition: margin 0.4s var(--ease);
}
.brand img {
  height: 110px;
  width: auto;
  display: block;
  filter: brightness(1.1);
  transition: filter 0.3s var(--ease), transform 0.4s var(--ease), height 0.4s var(--ease);
}
.brand:hover img {
  filter: brightness(1.3) drop-shadow(0 0 16px rgba(212,168,83,0.5));
  transform: scale(1.03);
}
.top.scrolled .brand img { height: 60px; }
.top.scrolled .brand { margin-bottom: 8px; }

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.main-nav a::before {
  content: attr(data-num);
  font-family: var(--display);
  font-style: italic;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0;
  opacity: 0.7;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease), left 0.4s var(--ease);
}
.main-nav a:hover {
  color: var(--gold);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
  left: 0;
}
.main-nav a.active { color: var(--gold); }

/* Floating phone icon (replaces old reservation icon) */
.float-icon {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: 42px;
  height: 80px;
  background: var(--burgundy);
  border-radius: 0 50% 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 18px;
  cursor: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.float-icon:hover {
  background: var(--burgundy-bright);
  width: 52px;
  padding-left: 6px;
  box-shadow: 0 14px 40px rgba(154,40,56,0.4);
}

/* Remove side menu entirely */
.menu-backdrop, .side-menu, .nav-burger { display: none !important; }



/* ================================================================
   SIDE MENU OVERLAY
   ================================================================ */
.side-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(540px, 100%);
  height: 100vh;
  background: var(--bg-1);
  z-index: 200;
  padding: 100px 60px 60px;
  transform: translateX(100%);
  transition: transform 0.7s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
  overflow-y: auto;
}
.side-menu.open { transform: translateX(0); }
.side-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(212,168,83,0.06), transparent 50%),
    radial-gradient(circle at 20% 100%, rgba(122,30,44,0.12), transparent 50%);
  pointer-events: none;
}
.menu-list { list-style: none; position: relative; }
.menu-list li {
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.menu-list a {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 22px 0;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--cream);
  position: relative;
  transition: all 0.4s var(--ease);
}
.menu-list a:hover { color: var(--gold); padding-left: 12px; }
.menu-list .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 400;
}
.menu-list a.active { color: var(--gold); }
.menu-list a.active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.menu-footer {
  position: relative;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
  border-top: 1px solid var(--line-soft);
  padding-top: 30px;
}
.menu-footer strong {
  display: block;
  color: var(--cream);
  font-weight: 400;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.menu-footer a { color: var(--text-muted); transition: color 0.3s; }
.menu-footer a:hover { color: var(--gold); }

.menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--ease);
}
.menu-backdrop.show { opacity: 1; visibility: visible; }

/* ================================================================
   HERO — HOME
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://www.romantic-bar.at/images/bar1.jpg') center/cover no-repeat;
  transform: scale(1.05);
  filter: brightness(0.55) saturate(0.9);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(60,8,12,0.35) 0%, rgba(40,8,12,0.25) 40%, rgba(10,5,6,0.95) 100%),
    radial-gradient(ellipse at center, rgba(122,30,44,0.15) 0%, transparent 40%, rgba(10,5,6,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-shadow: 0 4px 80px rgba(0,0,0,0.6);
}
.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroRise 1.4s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(2) { animation-delay: 0.2s; }
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
  margin-top: 50px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroRise 1s var(--ease-out) forwards;
  animation-delay: 0.8s;
}

.hero-bottom {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
  opacity: 0;
  animation: heroRise 1s var(--ease-out) forwards;
  animation-delay: 1.2s;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ================================================================
   PAGE HERO (for subpages)
   ================================================================ */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 220px 40px 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.8);
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,5,6,0.3) 0%, rgba(10,5,6,0.95) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 12px; color: var(--text-faint); }
.breadcrumb .current { color: var(--gold); }

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.page-hero h1 .it {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.page-hero .lede {
  margin-top: 24px;
  max-width: 600px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ================================================================
   SECTIONS
   ================================================================ */
section {
  position: relative;
  padding: 120px 40px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  max-width: 12ch;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 16ch; }
.section-title .it {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.section-text {
  max-width: 580px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.section-text.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  filter: brightness(0.85) saturate(0.85);
}
.about-image:hover img { transform: scale(1.05); }
.about-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 40px; bottom: 40px;
  border: 1px solid var(--gold-soft);
  z-index: -1;
}

/* ================================================================
   STATS / NUMBERS
   ================================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 60px 30px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.stat .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ================================================================
   FEATURE CARDS (3 columns)
   ================================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}
.feature-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-card);
}
.feature-card.featured {
  border-color: var(--gold-soft);
  background: linear-gradient(180deg, var(--bg-2) 0%, rgba(122,30,44,0.1) 100%);
}
.feature-card.featured::after {
  content: 'EMPFEHLUNG';
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 6px 12px;
}
.feature-card .label {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--cream);
}
.feature-card .tagline {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
  margin-bottom: 36px;
}
.feature-card .price {
  font-family: var(--display);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.feature-card .price-meta {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.feature-card ul {
  list-style: none;
  margin: 30px 0;
}
.feature-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-card ul li::before {
  content: '+';
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

/* ================================================================
   POLAROID GALLERY
   ================================================================ */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0;
}
.polaroid {
  background: #f5f0e8;
  padding: 16px 16px 60px;
  position: relative;
  transition: all 0.6s var(--ease);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  cursor: none;
}
.polaroid:nth-child(odd) { transform: rotate(-2deg); }
.polaroid:nth-child(even) { transform: rotate(1.5deg); }
.polaroid:nth-child(3n) { transform: rotate(-1deg); }
.polaroid:hover {
  transform: rotate(0) translateY(-12px) scale(1.04);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  z-index: 10;
}
.polaroid-img {
  aspect-ratio: 4/3;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.95) contrast(1.1);
}
.polaroid-caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: #2a1b1f;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  animation: lbZoom 0.5s var(--ease);
}
@keyframes lbZoom { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  border: 1px solid var(--gold-soft);
  color: var(--cream);
  width: 50px; height: 50px;
  cursor: none;
  font-family: var(--display);
  font-size: 18px;
  transition: all 0.3s var(--ease);
}
.lb-close { top: 30px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ================================================================
   INFO CARDS (Öffnungszeiten, Anreise, Kontakt)
   ================================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.info-map {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 480px;
}
.info-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(1) hue-rotate(180deg) saturate(0.6) brightness(0.8);
}
.info-map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--bg);
  padding: 24px 30px;
  border: 1px solid var(--gold-soft);
  font-family: var(--display);
  font-size: 24px;
  color: var(--cream);
  letter-spacing: 0.1em;
}
.info-map-overlay small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px;
  transition: all 0.4s var(--ease);
}
.info-card:hover { border-color: var(--gold-soft); }
.info-card .label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-card .label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.info-card h4 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--cream);
}
.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ================================================================
   CONTACT METHODS (3 cards: Anrufen, WhatsApp, Formular)
   ================================================================ */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.contact-method {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 40px 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.contact-method.featured { border-color: var(--gold-soft); }
.contact-method:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.contact-method .label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact-method h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--cream);
}
.contact-method p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-link {
  margin-top: auto;
  font-size: 17px;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  transition: color 0.3s;
}
.contact-link:hover { color: var(--gold); }
.contact-link .arrow {
  transition: transform 0.3s var(--ease);
}
.contact-link:hover .arrow { transform: translateX(6px); }
.contact-status {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ================================================================
   FORM
   ================================================================ */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  position: relative;
}
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.3s var(--ease);
}
.form-group select {
  background: var(--bg-1);
  padding-left: 12px;
  border: 1px solid var(--line);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-submit {
  text-align: center;
  margin-top: 50px;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 30px 0;
  text-align: left;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .icon {
  width: 32px; height: 32px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--gold); color: var(--bg); border-color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  padding: 0 0 30px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  max-width: 80%;
}

/* ================================================================
   COCKTAIL MENU
   ================================================================ */
.menu-category {
  margin-bottom: 80px;
}
.menu-category h3 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  margin-bottom: 50px;
  color: var(--cream);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.menu-category h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.cocktail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 60px;
}
.cocktail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cocktail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
}
.cocktail h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
}
.cocktail-price {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.cocktail-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--serif);
  line-height: 1.6;
}

/* ================================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ================================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  margin: 60px 0 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  letter-spacing: 0.02em;
}
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: none;
  margin: 16px 0;
  padding-left: 0;
}
.legal-content ul li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  padding-left: 24px;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-content strong { color: var(--cream); font-weight: 400; }
.legal-content a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.legal-content a:hover { border-bottom-color: var(--gold); }

/* ================================================================
   FOOTER
   ================================================================ */
.foot {
  padding: 100px 40px 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.foot-mark {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(80px, 15vw, 200px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
  opacity: 0.95;
}
.foot-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.foot-meta a { transition: color 0.3s; }
.foot-meta a:hover { color: var(--gold); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.foot-bottom a { transition: color 0.3s; }
.foot-bottom a:hover { color: var(--gold); }

/* ================================================================
   HIRING / PERSONAL SECTION
   ================================================================ */
.hiring-banner {
  position: relative;
  padding: 140px 40px;
  background:
    linear-gradient(135deg, rgba(122,30,44,0.4) 0%, rgba(40,8,12,0.85) 100%),
    url('https://www.romantic-bar.at/images/bar6.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hiring-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212,168,83,0.18), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(122,30,44,0.5), transparent 60%);
}
.hiring-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, var(--bg) 100%);
}
.hiring-banner .container {
  position: relative;
  z-index: 2;
}
.hiring-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.hiring-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  padding: 10px 18px;
  border: 1px solid var(--gold-soft);
  background: rgba(0,0,0,0.3);
}
.hiring-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
}
.hiring-banner h2 {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 30px;
}
.hiring-banner h2 .it {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.hiring-banner p {
  font-size: 17px;
  color: var(--cream);
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 540px;
  opacity: 0.92;
}
.hiring-banner p strong {
  color: var(--gold);
  font-weight: 400;
}
.hiring-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hiring-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.hiring-perk {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s var(--ease);
}
.hiring-perk:hover {
  border-color: var(--gold-soft);
  transform: translateX(6px);
}
.hiring-perk .icon {
  font-size: 24px;
  width: 44px; height: 44px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--display);
  font-style: italic;
}
.hiring-perk h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.hiring-perk p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Personal Page — Offer Grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.offer-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s var(--ease);
}
.offer-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
}
.offer-card .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}
.offer-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.offer-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.offer-card.featured {
  background: linear-gradient(135deg, rgba(122,30,44,0.25) 0%, var(--bg-2) 100%);
  border-color: var(--gold-soft);
}
.offer-card.featured .num { opacity: 1; }

/* Quote block */
.quote-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
}
.quote-block .mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 100px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 30px;
  opacity: 0.5;
}
.quote-block blockquote {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 30px;
  letter-spacing: 0.005em;
}
.quote-block blockquote .it {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.quote-block cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Application Form (Personal Page) */
.apply-section {
  background: var(--bg-1);
  position: relative;
}
.apply-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(122,30,44,0.15), transparent 50%);
}
.apply-wrap {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .hiring-grid { grid-template-columns: 1fr; gap: 50px; }
  .offer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hiring-banner { padding: 80px 24px; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   LOGO STYLING (old .brand img is in TOP NAV section above)
   ================================================================ */

.age-logo {
  width: 280px;
  height: auto;
  margin: 0 auto 40px;
  filter: brightness(1.1);
  animation: ageLogo 1s var(--ease-out) forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes ageLogo {
  to { opacity: 1; transform: translateY(0); }
}

.loader-logo {
  width: 180px;
  height: auto;
  filter: brightness(1.1);
}

.foot-logo {
  display: block;
  text-align: center;
  margin: 0 auto 50px;
  width: fit-content;
}
.foot-logo img {
  width: 320px;
  height: auto;
  filter: brightness(1.1);
  transition: filter 0.3s, transform 0.4s var(--ease);
}
.foot-logo:hover img {
  filter: brightness(1.3) drop-shadow(0 0 16px rgba(212,168,83,0.4));
  transform: scale(1.04);
}

/* ================================================================
   SPIRITS TABLE (Karte page)
   ================================================================ */
.spirits-table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--line);
}
.spirits-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  padding: 18px 20px;
  border-bottom: 1px dashed var(--line-soft);
  transition: background 0.3s var(--ease);
  align-items: baseline;
}
.spirits-row:last-child { border-bottom: none; }
.spirits-row:hover { background: rgba(212,168,83,0.04); }
.spirits-header {
  border-bottom: 1px solid var(--gold-soft);
  background: rgba(0,0,0,0.3);
}
.spirits-header > div {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.spirit-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.spirit-price {
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold);
  text-align: right;
}
.spirits-header > div:nth-child(2),
.spirits-header > div:nth-child(3) {
  text-align: right;
}

/* ================================================================
   ALLERGENS BOX
   ================================================================ */
.allergens {
  border: 1px solid var(--line);
  padding: 50px 40px;
  background: var(--bg-2);
  margin-top: 30px;
}
.allergens h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.allergens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.allergens-grid > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.allergens-grid strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  min-width: 18px;
}

@media (max-width: 760px) {
  .brand img { height: 75px; }
  .top.scrolled .brand img { height: 48px; }
  .main-nav { gap: 22px; }
  .main-nav a { font-size: 10px; letter-spacing: 0.2em; }
  .main-nav a::before { font-size: 9px; }
  .age-logo { width: 200px; margin-bottom: 30px; }
  .foot-logo img { width: 220px; }
  .spirits-row { gap: 12px; padding: 16px 12px; }
  .spirit-name { font-size: 15px; }
  .spirit-price { font-size: 14px; }
  .spirits-header > div { font-size: 9px; }
  .allergens { padding: 30px 20px; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .info-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .polaroid-grid { grid-template-columns: 1fr 1fr; }
  .cocktail-list { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  section { padding: 80px 24px; }
  .top { padding: 16px 16px 12px; }
  .top.scrolled { padding: 10px 16px 8px; }
  .hero-bottom { padding: 0 24px; font-size: 9px; flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .polaroid-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 180px 24px 60px; min-height: 60vh; }
  .hero { padding-top: 200px; }
  .float-icon { display: none; }
  .foot { padding: 60px 24px 30px; }
  .foot-meta { gap: 20px; flex-direction: column; align-items: center; }
}

/* ================================================================
   NORMALER MAUSZEIGER (eigener Cursor-Effekt deaktiviert)
   ================================================================ */
* { cursor: auto !important; }
a, button, .btn, .faq-q, [role="button"], input[type="submit"], label { cursor: pointer !important; }
.cursor { display: none !important; }
