/* ═══════════════════════════════════════════════
   EMSERSTRASSE 100 – Shared Stylesheet
   Bordell / Laufhaus Berlin-Neukölln
═══════════════════════════════════════════════ */

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

:root {
  --gold:    #c9a84c;
  --gold-lt: #e8c97a;
  --dark:    #0a0a0a;
  --dark2:   #111111;
  --dark3:   #1a1a1a;
  --red:     #8b0000;
  --text:    #d4d4d4;
  --white:   #f5f0e8;
  --radius:  0px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 60px; /* Höhe der 1-zeiligen Nav */
}


/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: #000;
  border: none;
  padding: .85rem 2.4rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  background: transparent;
  color: #aaa;
  border: 1px solid #444;
  padding: .85rem 2.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════
   NAVIGATION – immer sichtbar auf allen
   Geräten, keine versteckten Links
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 2px solid var(--gold);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  min-height: 60px;
}

/* Logo */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: .8rem 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Link-Liste – IMMER sichtbar */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #bbb;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: .9rem .75rem;
  display: block;
  white-space: nowrap;
  transition: color .25s, background .25s;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: #fff; background: rgba(201,168,76,.08); }
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* CTA Button */
.nav-cta {
  background: var(--gold);
  color: #000;
  padding: .5rem 1.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-lt); }

/* Hamburger: komplett ausgeblendet – nie benutzt */
.hamburger { display: none !important; }
.mobile-menu { display: none !important; }

/* ── BODY padding angepasst (nav kann 2 Zeilen haben) ── */
/* Wird im media query überschrieben */

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.7) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
}
.page-hero-label {
  font-size: .7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: .7rem 2.5rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: 1px;
}
.breadcrumb li { color: #555; }
.breadcrumb li + li::before { content: ' /'; color: #333; margin-right: .5rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SECTIONS ── */
.section { padding: 90px 2.5rem; }
.section--dark  { background: var(--dark); }
.section--dark2 { background: var(--dark2); }
.section--dark3 { background: var(--dark3); }
.inner { max-width: 1160px; margin: 0 auto; }
.inner--sm { max-width: 760px; margin: 0 auto; }
.text-center { text-align: center; }

.section-label {
  font-size: .7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-text { color: #888; max-width: 640px; margin-bottom: 1rem; font-size: 1rem; }
.divider { width: 60px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.divider--center { margin: 1.5rem auto; }

/* ── INFO CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-card {
  border: 1px solid rgba(201,168,76,.18);
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--dark3);
  transition: border-color .3s, transform .3s;
}
.info-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.info-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.info-card h3 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: .5rem; font-size: 1.05rem; }
.info-card p { font-size: .88rem; color: #777; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
  margin-top: 2.5rem;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: #0d0d0d;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.85);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s;
}
.gallery-item:hover .overlay { background: rgba(0,0,0,.35); }
.gallery-item .overlay span { color: transparent; font-size: 1.5rem; transition: color .4s; }
.gallery-item:hover .overlay span { color: rgba(255,255,255,.85); }

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.97);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
#lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: #fff; font-size: 2rem; cursor: pointer; opacity: .6;
  transition: opacity .3s; background: none; border: none;
}
#lb-close:hover { opacity: 1; }
#lb-prev, #lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 3rem; cursor: pointer; opacity: .5;
  background: none; border: none; transition: opacity .3s; padding: 1rem;
}
#lb-prev { left: .5rem; } #lb-next { right: .5rem; }
#lb-prev:hover, #lb-next:hover { opacity: 1; }
#lb-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: #666; font-size: .8rem; letter-spacing: 2px;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  border-left: 2px solid var(--gold);
  padding: 1.8rem 2rem;
  background: var(--dark3);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateX(5px); box-shadow: -3px 0 20px rgba(201,168,76,.1); }
.service-card h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.15rem; margin-bottom: .6rem; }
.service-card p { color: #777; font-size: .9rem; line-height: 1.7; }
.service-card .sc-icon { font-size: 1.5rem; margin-bottom: .8rem; }

/* ── PRICE TABLE ── */
.price-table { width: 100%; border-collapse: collapse; margin-top: 2.5rem; }
.price-table th {
  padding: 1rem 1.5rem;
  background: rgba(201,168,76,.1);
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid rgba(201,168,76,.25);
}
.price-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: #999;
  font-size: .95rem;
}
.price-table tr:hover td { background: rgba(255,255,255,.02); }
.price-table .price-val { color: var(--gold); font-weight: 600; }
.price-note { margin-top: 1.5rem; color: #555; font-size: .82rem; line-height: 1.8; }

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 { font-family: 'Playfair Display', serif; color: var(--gold); margin: 1.8rem 0 .5rem; font-size: 1.05rem; }
.contact-info p, .contact-info address { color: #777; font-size: .95rem; font-style: normal; line-height: 1.8; }
.contact-info a { color: var(--gold); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.oz-table { width: 100%; margin-top: .5rem; border-collapse: collapse; }
.oz-table td { padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: .88rem; }
.oz-table .oz-day { color: #888; }
.oz-table .oz-time { color: var(--gold); text-align: right; }
.map-wrap {
  width: 100%;
  height: 400px;
  border: 1px solid rgba(201,168,76,.2);
  overflow: hidden;
  filter: grayscale(.5) brightness(.75);
  transition: filter .4s;
}
.map-wrap:hover { filter: grayscale(0) brightness(1); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-label { color: #444; font-size: .78rem; text-align: center; margin-top: .8rem; letter-spacing: 1px; }

/* ── TEASER CARDS (index page) ── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 3rem;
}
.teaser-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  text-decoration: none;
}
.teaser-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.6);
  transition: transform .6s, filter .6s;
}
.teaser-card:hover img { transform: scale(1.07); filter: brightness(.4); }
.teaser-card-body {
  position: relative; z-index: 2;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%);
  width: 100%;
  transition: padding .3s;
}
.teaser-card:hover .teaser-card-body { padding-bottom: 2.5rem; }
.teaser-card-label { font-size: .65rem; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: .4rem; display: block; }
.teaser-card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); }
.teaser-card-arrow { color: var(--gold); margin-top: .6rem; font-size: .8rem; letter-spacing: 2px; display: block; opacity: 0; transform: translateX(-8px); transition: all .3s; }
.teaser-card:hover .teaser-card-arrow { opacity: 1; transform: translateX(0); }

/* ── HERO (main page) ── */
#hero {
  height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.88) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.hero-tagline { font-size: .7rem; letter-spacing: 6px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: 1rem; color: #bbb; max-width: 520px; margin: 0 auto 2.5rem; font-weight: 300; letter-spacing: .5px; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 1px; height: 0; background: var(--gold); margin: 0 auto; animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%{height:0;opacity:1} 100%{height:50px;opacity:0} }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.97);
  border-top: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 2.5rem;
  z-index: 150;
  transform: translateY(100%);
  transition: transform .4s;
}
.sticky-bar.visible { transform: translateY(0); }
.sb-text { font-size: .8rem; color: #777; }
.sb-text strong { color: var(--gold); }
.sb-actions { display: flex; gap: .8rem; }
.sb-call { background: var(--gold); color: #000; padding: .5rem 1.3rem; font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-decoration: none; transition: background .3s; }
.sb-call:hover { background: var(--gold-lt); }
.sb-wa { background: #25D366; color: #fff; padding: .5rem 1.3rem; font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-decoration: none; transition: opacity .3s; }
.sb-wa:hover { opacity: .85; }

/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 3.5rem 2.5rem 4rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 2rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: .6rem; display: block; }
.footer-about { color: #444; font-size: .85rem; line-height: 1.8; }
.footer-col h4 { color: #888; font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { color: #555; text-decoration: none; font-size: .85rem; transition: color .3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col address { font-style: normal; color: #555; font-size: .85rem; line-height: 1.9; }
.footer-col address a { color: var(--gold); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: #333; font-size: .78rem; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { color: #333; text-decoration: none; font-size: .78rem; transition: color .3s; }
.footer-legal-links a:hover { color: #666; }
.footer-age-badge { color: var(--gold); border: 1px solid rgba(201,168,76,.3); padding: .3rem .8rem; font-size: .75rem; letter-spacing: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Tablet – Nav bleibt 1 Zeile, Links kleiner */
@media (max-width: 900px) {
  nav { padding: 0 1rem; }
  .nav-links a { padding: .9rem .5rem; font-size: .72rem; letter-spacing: 1px; }
  .nav-cta { padding: .45rem .9rem; font-size: .7rem; }
}

/* Mobil – Nav wird 2-zeilig: Logo oben, alle Links darunter */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .nav-logo {
    padding: .6rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(201,168,76,.15);
  }
  .nav-links {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: none;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    padding: .7rem .8rem;
    font-size: .7rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-cta { display: none; } /* auf sehr kleinen Screens CTA ausblenden */
  body { padding-top: 100px; } /* mehr Platz für 2-zeilige Nav */
  .section { padding: 60px 1rem; }
  .sticky-bar { flex-direction: column; gap: .5rem; text-align: center; padding: .8rem 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
