/* ===== RESET & BASE ===== */
/* Kentish Schrift lokal einbinden */
@font-face {
  font-family: 'Kentish';
  src: url('fonts/Kentish.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* CI-Farben Winkelgasse */
  --purple-dark: #48142c;       /* Bordeaux/Dunkelviolett aus CI */
  --purple-mid: #6b1f42;
  --purple-light: #8f2d58;
  --gold: #f04393;              /* CI-Gradient Start: Pink */
  --gold-light: #f9c449;        /* CI-Gradient Ende: Orange/Gelb */
  --ci-gradient: linear-gradient(135deg, #f04393, #f9c449);
  --cream: #fdf6f0;
  --cream-dark: #f5e8e0;
  --white: #fff;
  --text-dark: #2a0a1a;
  --text-mid: #48142c;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  color: var(--text-dark);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.7;
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2.5rem;
  background: rgba(20, 5, 30, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: background 0.2s ease;
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-placeholder {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: url('images/logo.webp') center/contain no-repeat;
  border: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2a0818 0%, #48142c 40%, #3a0f24 70%, #1a0510 100%);
}

/* CI-Gradient Akzente */
.hero-bg-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(240,67,147,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(249,196,73,0.06) 0%, transparent 40%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 0, 20, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 700px;
}

.hero-logo-placeholder {
  width: 110px; height: 110px;
  border-radius: 0;
  background: url('images/logo.webp') center/contain no-repeat;
  border: none;
  margin: 0 auto 2rem;
}

#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title-gold {
  background: var(--ci-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.05em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: nowrap;
}

.hero-btn-row .btn {
  min-width: 190px;
  text-align: center;
  padding: 0.45rem 1.2rem;
}

.hero-btn-row-center {
  justify-content: center;
}

.hero-image-disclosure {
  display: table;
  max-width: calc(100% - 2rem);
  margin: 0.8rem auto 0;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(249,196,73,0.30);
  border-radius: 3px;
  background: rgba(10,0,20,0.14);
  color: rgba(255,255,255,0.58);
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.hero-image-disclosure span { color: var(--gold-light); }

.hero-arrow {
  margin-top: 0.35rem;
  position: relative;
  top: -11px;
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-dark {
  background: var(--purple-dark);
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}
.btn-dark:hover { background: var(--purple-mid); }

.btn-gold {
  background: var(--ci-gradient);
  color: var(--white);
  font-weight: 600;
  border: none;
}
.btn-gold:hover { opacity: 0.9; }

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
}

#raeume {
  scroll-margin-top: 82px;
}

.section-light { background: var(--white); }
.section-dark { background: var(--purple-dark); }
.section-cream { background: var(--cream); }

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--purple-dark);
  text-align: center;
  font-weight: 400;
  margin: 0.5rem 0;
}

.section h2.light { color: var(--white); }

.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0.3rem 0;
}
.ornament-light { color: var(--gold-light); }

.subtitle {
  text-align: center;
  font-style: italic;
  color: var(--purple-light);
  font-size: 1.1rem;
  margin: 0.5rem 0 3rem;
}
.subtitle-light {
  text-align: center;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin: 0.5rem 0 3rem;
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, #e8dff0 0%, #d4c5e8 100%);
  border: 2px dashed #b89fd4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5a9a;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  padding: 1rem;
  border-radius: 4px;
}

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.text-col p { margin-bottom: 1rem; color: var(--text-mid); }

.intro-italic {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--purple-mid) !important;
  margin-bottom: 1.5rem !important;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.badge {
  padding: 0.4rem 1rem;
  border: 1px solid #c8b8e0;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-mid);
  background: var(--cream);
}

.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.img-placeholder.tall {
  grid-row: 1 / 3;
  min-height: 320px;
}
.img-placeholder.short { min-height: 150px; }

/* ===== ROOMS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.room-card { display: flex; flex-direction: column; gap: 1.5rem; }

.room-img { min-height: 260px; }

.room-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.room-text p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; font-size: 0.95rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.feature-list li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding-left: 0.5rem;
}

.seats-info {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 3rem;
  font-size: 0.95rem;
}

/* ===== DRINKS ===== */
.drink-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 3rem auto;
  align-items: center;
  background: var(--purple-dark);
  border-radius: 8px;
  overflow: hidden;
}

.drink-img { min-height: 400px; border-radius: 0; }

.drink-text {
  padding: 2.5rem 3rem 2.5rem 0;
  color: var(--white);
}

.drink-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  background: var(--ci-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid #f04393;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.drink-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1rem;
}

.drink-text p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

.drink-variants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.drink-variant {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 1rem;
}

.drink-variant strong { color: var(--gold-light); display: block; margin-bottom: 0.3rem; }
.drink-variant p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.drink-card {
  border: 1px solid #e0d5f0;
  border-radius: 6px;
  overflow: hidden;
}

.drink-card-img { min-height: 220px; border-radius: 0; }

.drink-card-text { padding: 1.5rem; }

.drink-card-text h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--purple-dark);
  font-weight: 400;
  margin: 0.5rem 0 0.75rem;
}

.drink-card-text p { color: var(--text-mid); font-size: 0.95rem; }

/* ===== SPEISEKARTE ===== */
.menu-intro {
  max-width: 750px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-mid);
}

.menu-section { max-width: 1000px; margin: 0 auto 3rem; }

.menu-category {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--purple-dark);
  font-weight: 400;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu-note {
  font-style: italic;
  color: var(--purple-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.menu-item {
  padding: 1.25rem;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.menu-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--purple-dark);
  font-weight: 600;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item p { color: var(--text-mid); font-size: 0.9rem; }

.menu-footer {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
  border-top: 1px solid #d4c5e8;
  padding-top: 2rem;
}

.menu-footer p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 0.5rem; }

.menu-quote {
  font-style: italic;
  color: var(--purple-light) !important;
  font-size: 1.05rem !important;
  margin-top: 1rem !important;
}

/* ===== GALERIE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.gallery-img { min-height: 220px; border-radius: 4px; }

/* ===== ELFENGARTEN ===== */
.garden-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.garden-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.garden-feature span { font-size: 1.5rem; }
.garden-feature p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }

.garden-img { min-height: 380px; border-radius: 6px; }

.instagram-cta {
  text-align: center;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #e0d5f0;
}

.instagram-cta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--purple-dark);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.instagram-cta p { color: var(--text-mid); margin-bottom: 1.5rem; }

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  padding: 2rem;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card p { color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; font-size: 0.95rem; }

.contact-address-art {
  width: min(54%, 180px);
  aspect-ratio: 941 / 1672;
  margin: 1.5rem auto 0;
  padding: 4px;
  border: 1px solid rgba(249,196,73,0.45);
  border-radius: 4px;
  background: rgba(20,5,30,0.45);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}

.contact-address-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.contact-link {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 0.5rem;
}
.contact-link:hover { text-decoration: underline; }

.maps-embed { margin: 0.5rem 0; border-radius: 4px; overflow: hidden; }

.hours-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.hours-intro {
  font-style: italic;
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.6) !important;
  margin-bottom: 0.75rem !important;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.8);
}

.hours-table td:first-child { color: rgba(255,255,255,0.55); width: 50%; }

/* ===== FOOTER ===== */
footer {
  background: #0d0020;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links span { color: rgba(255,255,255,0.3); }

.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-quote {
  font-style: italic;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .two-col,
  .rooms-grid,
  .drink-feature,
  .drinks-grid,
  .contact-grid,
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col.reverse { direction: ltr; }

  .img-grid-2 {
    grid-template-columns: 1fr;
  }
  .img-placeholder.tall { grid-row: auto; min-height: 220px; }

  .drink-text { padding: 1.5rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .garden-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .drink-variants { grid-template-columns: 1fr; }
}

/* ===== HERO ERWEITERUNGEN ===== */
.hero-location {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  margin: 1.2rem 0 0.8rem;
  text-transform: uppercase;
}

.hero-bullets {
  list-style: none;
  margin: 0 auto 1.8rem;
  display: inline-block;
  text-align: left;
}

.hero-bullets li {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  padding: 0.2rem 0 0.2rem 1.4rem;
  position: relative;
}

.hero-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  background: var(--ci-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.7rem;
  top: 0.35rem;
}

.btn-catering {
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
}

/* Video-Platzhalter im Hero */
.hero-video-placeholder {
  margin: 2.5rem auto 0;
  max-width: 640px;
  width: 100%;
}

.video-placeholder-inner {
  background: rgba(0,0,0,0.45);
  border: 2px dashed rgba(240,67,147,0.5);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
}

.video-icon {
  font-size: 2.5rem;
  background: var(--ci-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.75rem;
}

.video-placeholder-inner p {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.video-placeholder-inner small {
  color: rgba(255,255,255,0.4);
  font-style: italic;
  font-size: 0.8rem;
}

/* ===== SPEISEN HIGHLIGHTS ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.highlight-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--purple-dark);
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.highlight-list li {
  color: var(--text-mid);
  font-size: 1rem;
  padding-left: 1.4rem;
  position: relative;
}

.highlight-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  background: var(--ci-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.65rem;
  top: 0.3rem;
}

.menu-cta {
  text-align: center;
  margin: 3rem 0 0;
}

/* Reservierung innerhalb einer Sektion */
.section-reservation {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid #d4c5e8;
}

.section-reservation p {
  font-style: italic;
  color: var(--purple-light);
  margin-bottom: 1.2rem;
}

/* ===== BESUCHSGRÜNDE ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.reason-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,67,147,0.25);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.reason-card:hover { border-color: rgba(249,196,73,0.5); }

.reason-icon {
  color: var(--gold-light);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.8rem;
}

.reason-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== INSTAGRAM SEKTION ===== */
.insta-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

.insta-img { min-height: 200px; border-radius: 4px; }

.insta-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== CATERING SEKTION ===== */
.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  align-items: center;
}

.catering-inner-text-only {
  grid-template-columns: minmax(0, 650px);
  justify-content: center;
}

.catering-inner-text-only .catering-text {
  text-align: center;
}

.catering-img { min-height: 380px; border-radius: 8px; }

.catering-brand {
  display: flex;
  width: fit-content;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0 auto 1.35rem;
  padding: 0.8rem 1.4rem 0.9rem;
  border: 1px solid rgba(242, 182, 75, 0.8);
  border-radius: 4px;
  background: #f5dfcf;
  color: #1b332c;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.catering-brand:hover {
  background: #fff1e6;
  color: #1b332c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.catering-brand-kicker {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.catering-brand strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 0.9;
}

.catering-text { color: var(--white); }

.catering-lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.catering-text p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

.btn-catering-site {
  margin-top: 0.75rem;
  border-color: #f2b64b !important;
  background: #1b332c !important;
  color: #f5dfcf !important;
}

.btn-catering-site:hover {
  border-color: #f5dfcf !important;
  background: #f2b64b !important;
  color: #1b332c !important;
}

/* ===== ANFAHRT SEKTION ===== */
.section-light .subtitle { margin-bottom: 2.5rem; }

.anfahrt-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  align-items: start;
}

.anfahrt-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--purple-dark);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.anfahrt-info p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.anfahrt-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ===== RESERVIERUNG VOR FOOTER ===== */
.section-reservation-full {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--purple-dark);
  border-top: 1px solid rgba(240,67,147,0.2);
  border-bottom: 1px solid rgba(240,67,147,0.2);
}

.section-dark-alt { background: #3a0f24; }

.reservation-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.reservation-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 0.9rem;
}

/* ===== NEUER FOOTER ===== */
footer {
  background: #0d0020 !important;
  padding: 0 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  width: 60px; height: 60px;
  background: url('images/logo.webp') center/contain no-repeat;
  margin-bottom: 1rem;
}

.footer-col .footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-align: left;
  margin: 0;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding: 2rem;
}

/* ===== RESPONSIVE ERGÄNZUNGEN ===== */
@media (max-width: 900px) {
  .highlights-grid,
  .reasons-grid,
  .catering-inner,
  .anfahrt-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .insta-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .insta-gallery,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .hero-video-placeholder { margin-top: 1.5rem; }
}

/* ===== LOGO WASSERZEICHEN IM HERO ===== */
.hero-watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('images/logo.webp') center/55% no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

/* ===== KENTISH / UNCIAL SCHRIFT FÜR WINKELGASSE ===== */
.hero-title-kentish {
  font-family: 'Uncial Antiqua', 'Cinzel', serif !important;
  letter-spacing: 0.04em;
}

/* ===== INFO-PILLS ===== */
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(240,67,147,0.35);
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-mid);
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.pill span {
  color: var(--gold);
  margin-right: 0.2rem;
}

.pill:hover {
  border-color: var(--gold);
  background: var(--cream);
}

/* ===== RÄUME-BLÖCKE (Feengarten + Bibliothek + Küche) ===== */
.raum-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 4rem auto 0;
  align-items: start;
}

.raum-block-reverse {
  direction: rtl;
}

.raum-block-reverse > * {
  direction: ltr;
}

.raum-img {
  min-height: 420px;
  border-radius: 6px;
}

.raum-text {
  color: var(--white);
}

.raum-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  background: var(--ci-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(240,67,147,0.4);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

.raum-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1rem;
}

.raum-text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.9rem;
  font-size: 0.97rem;
  line-height: 1.75;
}

.raum-text .feature-list {
  margin-top: 1.2rem;
}

/* ===== DRINKS INTRO TEXT ===== */
.drinks-intro {
  max-width: 780px;
  margin: 0 auto 1rem;
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
}

.drinks-tagline {
  text-align: center;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--purple-mid);
  margin: 0 auto 3rem;
  max-width: 600px;
}

/* ===== NAVIGATION CATERING LINK ===== */
.nav-catering {
  background: var(--ci-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  border: 1px solid rgba(240,67,147,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  transition: border-color 0.2s !important;
}

.nav-catering:hover {
  border-color: var(--gold-light) !important;
}

/* ===== RESPONSIVE ERGÄNZUNGEN FÜR RÄUME ===== */
@media (max-width: 900px) {
  .raum-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .raum-block-reverse {
    direction: ltr;
  }

  .raum-img {
    min-height: 260px;
  }
}

/* ===== HERO SCHRIFTZUG-LOGO ===== */
.hero-schriftzug {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  width: 90%;
}

.hero-schriftzug-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

/* W-Symbol in Navbar bleibt, aber hero-logo-placeholder wird nicht mehr gezeigt */
.hero-logo-placeholder { display: none; }

/* ===== HERO HAUPTTITEL (Uncial Antiqua, CI-Gradient) ===== */
.hero-title-main {
  font-family: 'Kentish', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, #f04393 0%, #f9a849 50%, #f9c449 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(240, 67, 147, 0.3));
}

/* Hero-Content: sichtbarer Abstand unter der festen Navigation. */
.hero-content {
  padding: 100px 2rem 3rem !important;
  transform: none;
}

@media (max-width: 768px) {
  .hero-title-main {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .hero-content {
    padding-top: 90px !important;
    transform: none;
  }
}

/* ===== GETEILTE ÜBERSCHRIFT mit & als Verbindung ===== */
.h2-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  line-height: 1.15;
}

.h2-split span:not(.h2-ampersand) {
  display: block;
  text-align: center;
}

.h2-ampersand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8em;
  background: var(--ci-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
  margin: 0.05em 0;
  display: block;
  text-align: center;
}

/* ===== & AM RAND DER ERSTEN ZEILE ===== */
.h2-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.h2-line1 {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
}

.h2-split em.h2-ampersand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1em;
  background: var(--ci-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  vertical-align: baseline;
}

/* ── Speisekarte: 3-spaltige Grid & Schriftrollenhinweis ── */
.highlights-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 2rem auto 0;
  text-align: left;
}

@media (max-width: 768px) {
  .highlights-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ── Echte Bilder in der Drinks-Sektion ── */
.drink-feature img.drink-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.drinks-grid img.drink-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.drinks-grid img.purple-london-fog-image {
  object-position: center 60%;
}

/* ===== SELBST GEHOSTETER RUNDGANG ===== */
.hero-video-container {
  margin-top: 2.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-responsive {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: #0b020a;
  border: 1px solid rgba(240, 67, 147, 0.3);
}

.video-responsive .site-tour-video {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

/* ===== VIRTUELLER RUNDGANG ===== */
.tour-section {
  padding: 5rem 2rem 6rem;
  background: linear-gradient(135deg, #2a0818 0%, #48142c 55%, #2a0818 100%);
  border-top: 1px solid rgba(240, 67, 147, 0.18);
  text-align: center;
  scroll-margin-top: 70px;
}

.tour-section h2 {
  margin: 0.5rem 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
}

.tour-subtitle {
  margin: 0.6rem 0 0;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
}

.tour-section .hero-video-container {
  max-width: 960px;
  margin-top: 2rem;
}

/* ===== KI-UNTERSTÜTZTE STIMMUNGSVISUALISIERUNGEN ===== */
.hero-bg-placeholder {
  /* Bewusst ohne Foto: Der Startscreen bleibt ruhig und lässt Logo, Hinweise und Rundgang wirken. */
  background: linear-gradient(135deg, #2a0818 0%, #48142c 40%, #3a0f24 70%, #1a0510 100%);
}

.image-disclosure {
  margin: 0.85rem 0 0;
  color: rgba(72, 20, 44, 0.63);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: left;
  border-top: 1px solid rgba(72, 20, 44, 0.16);
  padding-top: 0.65rem;
}

.image-disclosure summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  color: var(--purple-mid);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.image-disclosure summary::-webkit-details-marker { display: none; }

.image-disclosure summary::after {
  content: '+';
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
}

.image-disclosure[open] summary::after { content: '–'; }

.image-disclosure summary span {
  color: var(--gold);
  font-size: 0.8em;
}

.image-disclosure p {
  margin: 0.55rem 0 0;
  color: rgba(72, 20, 44, 0.64);
}

.visual-frame {
  min-height: 150px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0;
}

.visual-frame-wide {
  grid-row: 1 / 3;
  min-height: 320px;
}

.visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.raum-img.visual-image {
  height: 420px;
  min-height: 0;
}

.insta-gallery .insta-img {
  width: 100%;
  height: 230px;
  min-height: 0;
  object-fit: cover;
}

.insta-gallery .insta-img-pink-dragon {
  object-position: center 58%;
}

.insta-gallery .insta-img-feengarten-detail {
  object-position: center 60%;
}

.gift-voucher-image {
  object-position: center 62%;
}

.garden-img.visual-image,
.gift-img,
.catering-img.visual-image {
  width: 100%;
  height: 420px;
  min-height: 0;
  object-fit: cover;
}

@media (max-width: 900px) {
  .visual-frame-wide { grid-row: auto; min-height: 220px; }
  .raum-img.visual-image,
  .garden-img.visual-image,
  .gift-img,
  .catering-img.visual-image { height: 320px; }
}

/* ===== MOBILE-KORREKTUREN FÜR HERO UND VIDEOHINWEIS ===== */
.video-pending {
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(240, 67, 147, 0.35);
  border-radius: 10px;
  background: rgba(10, 0, 20, 0.48);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.video-pending > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.video-pending p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
}

.video-pending small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.64);
  font-family: var(--font-serif);
  font-style: italic;
}

@media (max-width: 600px) {
  .hero-content { padding-left: 1rem; padding-right: 1rem; }

  .hero-btn-row {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-btn-row .btn {
    flex: 1 1 250px;
    min-width: 0;
    max-width: 320px;
  }

  .image-disclosure { font-size: 0.68rem; }
}
