/* ============================================================
   Eskidandy / Dandy Köln — gemeinsames Stylesheet
   Farben & Typo laut Design-Handoff (siehe README im Handoff-Ordner)
   ============================================================ */

:root {
  /* Eskidandy (warm / gold) */
  --eski-bg: #14100d;
  --eski-bg-warm: #1c1510;
  --eski-text: #f3e7d3;
  --eski-text-muted: #cbb99e;
  --eski-text-sec: #b09877;
  --eski-text-ter: #8a7660;
  --eski-accent: #e8a84c;
  --eski-accent-light: #f3c87e;
  --eski-border: rgba(232, 168, 76, 0.22);
  --eski-border-soft: rgba(232, 168, 76, 0.15);
  --eski-card-fill: rgba(232, 168, 76, 0.05);

  /* Dandy Köln (dunkel / neon) */
  --dandy-bg: #0f0a14;
  --dandy-accent: #ff2f92;
  --dandy-accent-light: #ff6cb0;
  --dandy-glow: rgba(255, 47, 146, 0.4);
  --dandy-border: rgba(255, 47, 146, 0.24);
  --dandy-card-fill: rgba(255, 47, 146, 0.05);
  --dandy-text: #fdeef6;
  --dandy-text-muted: #c9b3c6;
  --dandy-text-muted2: #e3cede;
  --dandy-text-sec: #a889a5;
  --dandy-text-ter: #7a6377;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.theme-eski { background: var(--eski-bg); color: var(--eski-text); }
body.theme-dandy { background: var(--dandy-bg); color: var(--dandy-text); }

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

a { text-decoration: none; }
.theme-eski a { color: var(--eski-accent); }
.theme-eski a:hover { color: var(--eski-accent-light); }
.theme-dandy a { color: var(--dandy-accent); }
.theme-dandy a:hover { color: var(--dandy-accent-light); }

@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .neon-pulse { animation: none !important; }
}

/* ---------- Layout-Helfer ---------- */

.container { max-width: 720px; margin: 0 auto; }
.container-wide { max-width: 900px; margin: 0 auto; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.theme-eski .site-header {
  background: rgba(20, 16, 13, 0.92);
  border-bottom: 1px solid rgba(232, 168, 76, 0.18);
}

.theme-dandy .site-header {
  background: rgba(15, 10, 20, 0.92);
  border-bottom: 1px solid var(--dandy-border);
}

.header-logo img { height: 30px; width: auto; }

.back-link {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dandy-text-sec) !important;
}
.back-link:hover { color: var(--dandy-text) !important; }

/* Sprachumschalter */
.lang-switch { display: flex; gap: 6px; }

.lang-btn {
  padding: 6px 10px;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: transparent;
}

.theme-eski .lang-btn {
  color: var(--eski-text-sec);
  border: 1px solid rgba(232, 168, 76, 0.35);
}
.theme-eski .lang-btn.active {
  background: var(--eski-accent);
  color: var(--eski-bg);
  border-color: var(--eski-accent);
}

.theme-dandy .lang-btn {
  color: var(--dandy-text-sec);
  border: 1px solid rgba(255, 47, 146, 0.35);
}
.theme-dandy .lang-btn.active {
  background: var(--dandy-accent);
  color: var(--dandy-bg);
  border-color: var(--dandy-accent);
}

/* ---------- Kicker & Headlines ---------- */

.kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.theme-eski .kicker { color: var(--eski-accent); }
.theme-dandy .kicker, .kicker--dandy { color: var(--dandy-accent); }

.neon-pulse { animation: neonPulse 3s ease-in-out infinite; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 500;
  margin: 0;
}

/* ---------- Buttons / CTAs ---------- */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-gold-fill {
  background: var(--eski-accent);
  color: var(--eski-bg) !important;
}
.btn-gold-fill:hover { background: var(--eski-accent-light); }

.btn-light-outline {
  border: 1px solid rgba(243, 231, 211, 0.5);
  color: var(--eski-text) !important;
}
.btn-light-outline:hover {
  border-color: var(--eski-text);
  background: rgba(243, 231, 211, 0.08);
}

.btn-gold-outline {
  padding: 12px 22px;
  border: 1px solid var(--eski-accent);
  color: var(--eski-accent) !important;
}
.btn-gold-outline:hover {
  background: rgba(232, 168, 76, 0.12);
  color: var(--eski-accent-light) !important;
}

.btn-neon-outline {
  border: 1px solid var(--dandy-accent);
  color: var(--dandy-accent) !important;
  box-shadow: 0 0 20px var(--dandy-glow);
}
.btn-neon-outline:hover { background: rgba(255, 47, 146, 0.14); }

/* ---------- Hero (Eskidandy) ---------- */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 16, 13, 0.35) 0%,
    rgba(20, 16, 13, 0.1) 40%,
    rgba(20, 16, 13, 0.92) 95%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 46px 24px 52px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.hero-content h1 { margin: 0; display: grid; justify-items: center; }

.hero-logo {
  width: min(78vw, 380px);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55));
}

.hero-teaser {
  margin: 0 auto;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.6;
  color: #d8c8ac;
}

.hero-ctas {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Intro ---------- */

.intro {
  padding: 68px 22px 20px;
  background: linear-gradient(180deg, var(--eski-bg) 0%, var(--eski-bg-warm) 30%);
}

.intro .container { display: grid; gap: 26px; }

.intro-text {
  margin: 0 auto;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--eski-text-muted);
  text-align: center;
}

.intro-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}

.intro-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.intro-video {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.intro-video .kicker {
  text-align: center;
  letter-spacing: 0.28em;
}

.eski-video-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--eski-border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}

.eski-video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Galerie ---------- */

.gallery {
  padding: 72px 22px 60px;
  border-top: 1px solid var(--eski-border-soft);
}

.gallery .container-wide { display: grid; gap: 24px; }
.gallery .section-title { text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 3px;
}

/* ---------- Dandy Teaser (auf Startseite) ---------- */

.dandy-teaser {
  position: relative;
  overflow: hidden;
  background: var(--dandy-bg);
  border-top: 1px solid var(--dandy-border);
  border-bottom: 1px solid var(--dandy-border);
}

.dandy-teaser-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.35);
}

.dandy-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 10, 20, 0.92) 0%, rgba(15, 10, 20, 0.55) 100%);
}

.dandy-teaser-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 58px 24px;
  display: grid;
  gap: 10px;
}

.dandy-teaser-content .kicker { letter-spacing: 0.3em; }

.dandy-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 600;
  color: var(--dandy-text);
  text-shadow: 0 0 26px var(--dandy-glow);
}

.dandy-teaser-text {
  margin: 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dandy-text-muted2);
}

.dandy-teaser-content .btn {
  margin-top: 10px;
  justify-self: start;
}

/* ---------- Unsere Geschichte (Yeşilçam-Story) ---------- */

.story {
  padding: 72px 22px 64px;
  background: var(--eski-bg);
  border-top: 1px solid var(--eski-border-soft);
}

.story .container {
  max-width: 620px;
  display: grid;
  gap: 18px;
}

.story .kicker { text-align: center; }
.story .section-title { text-align: center; }

.story-divider {
  width: 46px;
  height: 1px;
  background: var(--eski-accent);
  opacity: 0.6;
  margin: 6px auto 10px;
}

.story p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--eski-text-muted);
}

.story-lead {
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: 18px !important;
  color: var(--eski-text) !important;
}

.story-quote {
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--eski-border);
  color: #d8c8ac !important;
}

.story-signature {
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: 18px !important;
  color: var(--eski-accent) !important;
  margin-top: 6px !important;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0;
}

.story-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.story-more { display: none; }
.story--open .story-more { display: contents; }

.story-toggle {
  justify-self: center;
  margin-top: 8px;
  padding: 12px 22px;
  border: 1px solid var(--eski-accent);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eski-accent);
  transition: background 0.2s, color 0.2s;
}
.story-toggle:hover {
  background: rgba(232, 168, 76, 0.12);
  color: var(--eski-accent-light);
}
.story--open .story-toggle { margin-top: 2px; }

/* ---------- Über uns + Vermietung ---------- */

.about {
  padding: 72px 22px 60px;
  background: var(--eski-bg-warm);
}

.about .container { display: grid; gap: 40px; }
.about-block { display: grid; gap: 10px; }

.about-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  margin: 6px 0 4px;
}

.about-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--eski-text-muted);
}

/* ---------- Location mieten + Anfrage-Formular ---------- */

.rent {
  padding: 76px 22px 80px;
  background: var(--eski-bg);
  border-top: 1px solid var(--eski-border-soft);
}

.rent .container {
  max-width: 640px;
  display: grid;
  gap: 14px;
}

.rent .kicker { text-align: center; letter-spacing: 0.28em; }
.rent .section-title { text-align: center; }

.rent-intro {
  margin: 0 auto;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--eski-text-muted);
  text-align: center;
}

.rent-form {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rent-form label { display: grid; gap: 8px; }

.form-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eski-text-sec);
  transition: color 0.2s;
}

.rent-form label:focus-within .form-label { color: var(--eski-accent); }

.rent-form input,
.rent-form select,
.rent-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(232, 168, 76, 0.18);
  border-radius: 8px;
  background-color: rgba(243, 231, 211, 0.045);
  color: var(--eski-text);
  font-family: var(--font-body);
  font-size: 16px; /* verhindert außerdem den Auto-Zoom von iOS beim Antippen */
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.rent-form input:hover,
.rent-form select:hover,
.rent-form textarea:hover {
  border-color: rgba(232, 168, 76, 0.38);
}

.rent-form input:focus,
.rent-form select:focus,
.rent-form textarea:focus {
  outline: none;
  border-color: var(--eski-accent);
  background-color: rgba(243, 231, 211, 0.07);
  box-shadow: 0 0 0 3px rgba(232, 168, 76, 0.16);
}

/* Autofill nicht weiß aufblitzen lassen */
.rent-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #241c12 inset;
  -webkit-text-fill-color: var(--eski-text);
  caret-color: var(--eski-text);
}

.rent-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.rent-form input[type="date"] { color-scheme: dark; }

.rent-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23e8a84c' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.rent-form-submit {
  margin-top: 6px;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--eski-accent);
  color: var(--eski-bg);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.rent-form-submit:hover {
  background: var(--eski-accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 168, 76, 0.25);
}

.rent-form-submit:active { transform: translateY(0); box-shadow: none; }

.form-error {
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(224, 122, 95, 0.4);
  border-radius: 8px;
  background: rgba(224, 122, 95, 0.08);
  font-size: 14px;
  text-align: center;
  color: #e8917a;
}

.form-note {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  color: var(--eski-text-ter);
}

/* Neon-Variante des Formulars für die Dandy-Seite */
.theme-dandy .rent {
  background: var(--dandy-bg);
  border-top: 1px solid var(--dandy-border);
}

.theme-dandy .rent .section-title { color: var(--dandy-accent); }
.theme-dandy .rent-intro { color: var(--dandy-text-muted); }
.theme-dandy .form-label { color: var(--dandy-text-sec); }
.theme-dandy .rent-form label:focus-within .form-label { color: var(--dandy-accent); }

.theme-dandy .rent-form input,
.theme-dandy .rent-form select,
.theme-dandy .rent-form textarea {
  border-color: rgba(255, 47, 146, 0.2);
  background-color: rgba(253, 238, 246, 0.045);
  color: var(--dandy-text);
}

.theme-dandy .rent-form input:hover,
.theme-dandy .rent-form select:hover,
.theme-dandy .rent-form textarea:hover {
  border-color: rgba(255, 47, 146, 0.42);
}

.theme-dandy .rent-form input:focus,
.theme-dandy .rent-form select:focus,
.theme-dandy .rent-form textarea:focus {
  border-color: var(--dandy-accent);
  background-color: rgba(253, 238, 246, 0.07);
  box-shadow: 0 0 0 3px rgba(255, 47, 146, 0.18);
}

.theme-dandy .rent-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #1d1226 inset;
  -webkit-text-fill-color: var(--dandy-text);
  caret-color: var(--dandy-text);
}

.theme-dandy .rent-form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ff2f92' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.theme-dandy .rent-form-submit {
  background: var(--dandy-accent);
  color: var(--dandy-bg);
  box-shadow: 0 0 24px rgba(255, 47, 146, 0.25);
}

.theme-dandy .rent-form-submit:hover {
  background: var(--dandy-accent-light);
  box-shadow: 0 8px 30px rgba(255, 47, 146, 0.35);
}

.theme-dandy .form-note { color: var(--dandy-text-ter); }

/* ---------- Kontakt / Footer ---------- */

.site-footer { padding: 64px 22px 48px; }
.theme-eski .site-footer { border-top: 1px solid var(--eski-border-soft); }
.theme-dandy .site-footer { padding: 44px 22px 40px; border-top: 1px solid var(--dandy-border); }

.site-footer .container { display: grid; gap: 22px; }
.theme-dandy .site-footer .container { gap: 16px; }

.contact-list {
  display: grid;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--eski-text-muted);
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--eski-accent);
  margin-bottom: 4px;
}

.maps-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links .link-dandy { color: var(--dandy-accent); }
.footer-links .link-dandy:hover { color: var(--dandy-accent-light); }
.footer-links .link-eski { color: var(--eski-accent); }
.footer-links .link-eski:hover { color: var(--eski-accent-light); }

.footer-bottom {
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
}

.theme-eski .footer-bottom {
  border-top: 1px solid rgba(232, 168, 76, 0.12);
  color: var(--eski-text-ter);
}
.theme-eski .footer-bottom a { color: var(--eski-text-ter); }
.theme-eski .footer-bottom a:hover { color: var(--eski-text-sec); }

.theme-dandy .footer-bottom {
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 47, 146, 0.12);
  color: var(--dandy-text-ter);
}
.theme-dandy .footer-bottom a { color: var(--dandy-text-ter); }
.theme-dandy .footer-bottom a:hover { color: var(--dandy-text-sec); }

.footer-legal { display: flex; gap: 14px; }

/* ---------- Dandy Hero ---------- */

.dandy-hero { padding: 52px 22px 64px; }

.dandy-hero-content {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: center;
}

.dandy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 12vw, 72px);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.03em;
  text-shadow: 0 0 34px var(--dandy-glow);
}

.dandy-hero-body {
  margin: 0 auto;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--dandy-text-muted);
}

.dandy-video-frame {
  max-width: 720px;
  margin: 30px auto 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--dandy-border);
  box-shadow: 0 0 40px var(--dandy-glow);
}

.dandy-video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */

.legal-back {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal {
  padding: 64px 22px 72px;
}

.legal .container { max-width: 640px; }

.legal .section-title { margin-bottom: 10px; }

.legal h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin: 34px 0 8px;
  color: var(--eski-accent);
}

.legal p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--eski-text-muted);
}

.legal ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--eski-text-muted);
  margin-bottom: 4px;
}

.legal li::marker { color: var(--eski-accent); }

.legal em { color: var(--eski-text-sec); }

.site-footer--slim { padding: 28px 22px 34px; }
.site-footer--slim .footer-bottom { margin-top: 0; padding-top: 0; border-top: 0; }

/* ============================================================
   Responsive Feintuning
   (bewusst am Dateiende, damit es alle Basisregeln übersteuert)
   ============================================================ */

/* Sehr schmale Geräte (iPhone SE & Co.) */
@media (max-width: 350px) {
  .intro-images { grid-template-columns: 1fr; }
  .intro-images img { height: 210px; }
  .story-images { grid-template-columns: 1fr; }
  .story-images img { height: 180px; }
}

/* Formularfelder untereinander auf schmalen Screens */
@media (max-width: 480px) {
  .form-row--2 { grid-template-columns: 1fr; }
}

/* Große Screens: Bildreihen dürfen etwas höher sein */
@media (min-width: 700px) {
  .intro-images img { height: 260px; }
  .about-photo { height: 320px; }
}
