/* ============================================================
   Carousel — Bilder-Karussell „Unser Restaurant"
   ============================================================ */

.carousel-section {
  padding: 96px 0 96px;
  background: var(--ink-2);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.carousel-section::before {
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212, 165, 42, .08), transparent 70%);
}

.carousel-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  gap: 32px;
  flex-wrap: wrap;
}
.carousel-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 3.8vw, 50px);
  letter-spacing: -.012em;
  line-height: 1.05;
  color: var(--paper);
  /* Konsistent zu .section-title in den anderen Section-Heads —
     ohne diesen Abstand klebt die h2 direkt am Eyebrow. */
  margin-top: 18px;
}
.carousel-head h2 i {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}

/* Steuerelemente */
.carousel-nav {
  display: flex;
  gap: 10px;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(246, 239, 225, .22);
  background: transparent;
  color: var(--paper);
  display: grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* Track */
.carousel { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform .5s cubic-bezier(.25, .6, .25, 1);
}

/* Slides — alle gleich groß, keine Rotation/Versatz mehr.
   Fokus liegt rein über Opacity auf der mittleren Slide. */
.slide {
  flex: 0 0 calc((100% - 28px) / 3);
  height: 340px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  opacity: .78;
  transition: transform .35s cubic-bezier(.25, .6, .25, 1),
              box-shadow .35s,
              opacity .35s;
}
.slide.is-focus {
  opacity: 1;
}
.slide:hover {
  transform: translateY(-4px);
  z-index: 2;
  opacity: 1;
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, .65);
}
.slide::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, .12), transparent 55%);
}
.slide::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .65) 100%);
}

/* Echte Fotos füllen die Slide; Gradient bleibt als Fallback dahinter */
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.slide img.is-missing { display: none; }

/* Slide-Hintergründe (Platzhalter-Gradients / Fallback) */
.slide-1 { background: radial-gradient(ellipse 70% 65% at 50% 45%, #e0703a 0%, #a93414 45%, #4f1108 100%); }
.slide-2 { background: radial-gradient(ellipse 70% 65% at 50% 45%, #d68d3f 0%, #864e1a 45%, #2f1808 100%); }
.slide-3 { background: radial-gradient(ellipse 70% 65% at 50% 45%, #6d2e16 0%, #3a1709 60%, #150805 100%); }
.slide-4 { background: radial-gradient(ellipse 70% 65% at 50% 45%, #b5b66e 0%, #5e6e3c 50%, #243416 100%); }
.slide-5 { background: radial-gradient(ellipse 70% 65% at 50% 45%, #e6c053 0%, #946d10 50%, #382806 100%); }
.slide-6 { background: radial-gradient(ellipse 70% 65% at 50% 45%, #c46055 0%, #7a221b 55%, #2c0807 100%); }

.slide-meta {
  position: absolute;
  left: 22px; bottom: 20px; right: 22px;
  z-index: 2;
  color: #fffaf0;
}
.slide-meta .num {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  opacity: .75;
  letter-spacing: .04em;
}
.slide-meta .ttl {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -.005em;
  margin-top: 2px;
}
.slide-meta .sub {
  font-size: 12px;
  opacity: .85;
  margin-top: 4px;
}

/* Punkte-Indikator */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(246, 239, 225, .22);
  cursor: pointer;
  transition: all .2s;
}
.dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--gold);
}
