﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Topbar-Höhe (65px Logo) + 15px Luft */
}
:root {
  --blush: #E8A4A4;
  --rose: #C96B7A;
  --deep-rose: #8B3A4A;
  --mauve: #B07A8C;
  --cream: #FAF6F0;
  --soft-pink: #F2E0E4;
  --warm-white: #FFF8F5;
  --dark: #2D1B22;
  --muted: #8A6872;
  --gold: #C4956A;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

/* ── FADE-IN ON SCROLL ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STICKY TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(45,27,34,0.08);
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
}
.topbar.scrolled { box-shadow: 0 3px 20px rgba(45,27,34,0.15); }
.topbar-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.topbar-logo { height: 65px; width: auto; display: block; }
.topbar-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.topbar-nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.topbar-nav a:hover { color: var(--rose); }
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}
.topbar-instagram {
  color: var(--mauve);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.topbar-instagram:hover { color: var(--rose); }
.topbar-phone {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.topbar-phone:hover { color: var(--rose); }
/* Tablet + Mobile (≤1024px): Nav und Kontakte ausblenden */
@media (max-width: 1024px) {
  .topbar-nav { display: none; }
  .topbar-phone { display: none; }
  .topbar-instagram { display: none; }
  .topbar-actions { margin-left: auto; }
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) { .hamburger { display: flex; } }

/* Mobile (≤700px): Logo zentriert, Hamburger absolut rechts */
@media (max-width: 700px) {
  .topbar { justify-content: center; }
  .topbar-actions {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 6px 24px rgba(45,27,34,0.12);
  z-index: 99;
  flex-direction: column;
  border-top: 2px solid var(--soft-pink);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(176,122,140,0.1);
  color: var(--dark);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a:focus { color: var(--rose); background: var(--soft-pink); }
.mobile-menu-phone {
  color: var(--deep-rose) !important;
  font-weight: 600 !important;
  background: var(--soft-pink);
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 150;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

/* ── HEADER ── */
header {
  background: linear-gradient(160deg, var(--deep-rose) 0%, #6B2535 100%);
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.header-ornament {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  position: relative;
}
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  color: #FFF8F5;
  font-weight: 400;
  line-height: 1.1;
  position: relative;
}
header h1 em {
  color: var(--gold);
  font-style: italic;
}
.header-sub {
  margin-top: 0.8rem;
  color: rgba(255,248,245,0.65);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
}
.divider {
  display: flex; align-items: center; gap: 0.8rem;
  max-width: 160px; margin: 1.4rem auto 0;
  position: relative;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }


/* ── HERO BAND ── */
.hero-band {
  background: var(--soft-pink);
  text-align: center; padding: 2.2rem 2rem;
  border-bottom: 1px solid rgba(176,122,140,0.15);
}
.hero-band p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic; color: var(--deep-rose);
  max-width: 580px; margin: 0 auto;
  opacity: 0.9;
}

/* ── INHABERIN SEKTION ── */
.owner-section {
  background: var(--warm-white);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(176,122,140,0.15);
}
.owner-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--blush);
  box-shadow: 0 8px 32px rgba(139,58,74,0.15);
  flex-shrink: 0;
}
.owner-text { max-width: 420px; }
.owner-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--deep-rose);
  margin-bottom: 0.6rem; font-weight: 600;
}
.owner-text p {
  font-size: 0.97rem; line-height: 1.8;
  color: #4A2D35;
}
.owner-tags {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-top: 1rem;
}
.tag {
  background: var(--soft-pink);
  color: var(--deep-rose);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 20px;
  border: 1px solid rgba(176,122,140,0.3);
}

/* ── GALERIE ── */
.gallery-section {
  max-width: 900px; margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--deep-rose);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.photo-slot {
  background: #EDE0E4;
  aspect-ratio: 4/3;
  border-radius: 4px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 2px dashed rgba(176,122,140,0.4);
  cursor: pointer; transition: background 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
}
.photo-slot:hover {
  background: #E4D4D8;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(139,58,74,0.12);
}
.slot-icon { font-size: 1.5rem; }
.slot-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mauve); margin-top: 0.35rem;
}
.upload-hint {
  text-align: center; margin-top: 0.7rem;
  font-size: 0.78rem; color: var(--muted);
  font-style: italic;
}

/* ── MAIN GRID ── */
main {
  max-width: 900px; margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 580px) { main { grid-template-columns: 1fr; } }

.card {
  background: var(--warm-white);
  border-radius: 4px; padding: 1.8rem;
  border-top: 3px solid var(--blush);
  box-shadow: 0 2px 16px rgba(139,58,74,0.06);
}
.card-full { grid-column: 1 / -1; }
.card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--deep-rose);
  margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 600;
}
.card-icon {
  width: 26px; height: 26px;
  background: var(--soft-pink);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}

/* Öffnungszeiten */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(176,122,140,0.12); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.45rem 0.5rem; font-size: 0.9rem; }
.hours-table td:first-child {
  font-weight: 500; color: var(--muted);
  text-transform: uppercase; font-size: 0.72rem;
  letter-spacing: 0.09em; width: 38%;
}
.closed { color: var(--blush) !important; font-style: italic; font-size: 0.82rem !important; }
tr.today td { font-weight: 600; background: var(--soft-pink); }
tr.today td:first-child { color: var(--deep-rose) !important; border-radius: 4px 0 0 4px; }
tr.today td:last-child { border-radius: 0 4px 4px 0; }

/* Kontakt */
.contact-item { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.85rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-label {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
  font-weight: 500; min-width: 76px; flex-shrink: 0;
}
.contact-value { font-size: 0.92rem; color: var(--dark); line-height: 1.4; }
.contact-value a { color: var(--rose); text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--deep-rose); }

/* Map */
.map-link {
  display: flex; background: #F0E4E8;
  border-radius: 4px; height: 110px;
  align-items: center; justify-content: center;
  margin-top: 1rem; border: 1px dashed rgba(176,122,140,0.4);
  cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.map-link:hover { background: #EAD8DC; }
.map-inner { text-align: center; color: var(--deep-rose); }
.map-inner .map-pin { font-size: 1.8rem; display: block; margin-bottom: 0.25rem; }
.map-inner span { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 2.5rem 1.5rem 2rem;
  color: rgba(255,248,245,0.5);
  font-size: 0.8rem;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,248,245,0.08);
}
.footer-links span,
.footer-links a {
  color: rgba(255,248,245,0.55);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blush); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,248,245,0.3);
  letter-spacing: 0.04em;
}
.footer-made-by {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255,248,245,0.2);
  letter-spacing: 0.04em;
}
.agb-link {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,248,245,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.agb-link:hover { color: var(--blush); }

/* ── AGB MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,27,34,0.65);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--warm-white);
  border-radius: 6px;
  border-top: 3px solid var(--gold);
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(45,27,34,0.35);
  transform: translateY(28px);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid rgba(176,122,140,0.2);
  flex-shrink: 0;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--deep-rose);
  font-weight: 600;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--muted);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--soft-pink); color: var(--deep-rose); }
.modal-body {
  padding: 1.4rem 1.6rem 1.8rem;
  overflow-y: auto;
  line-height: 1.78;
  color: #4A2D35;
  font-size: 0.92rem;
}
.modal-body p { margin-bottom: 0.9rem; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  color: var(--deep-rose);
  font-weight: 600;
  margin: 1.3rem 0 0.4rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(176,122,140,0.15);
}
@media (max-width: 500px) {
  .modal-header { padding: 1rem 1.2rem; }
  .modal-body { padding: 1.1rem 1.2rem 1.4rem; font-size: 0.88rem; }
  .modal-title { font-size: 1rem; }
}