:root {
  --bg-main: rgba(26, 15, 10, 1);       /* warmes dunkelbraun */
  --bg-section: rgba(45, 22, 9, 1);     /* dunkles warmes orange-braun */
  --accent: #fb923c;                    /* warmes Orange */
  --accent-soft: #f97316;               /* leicht dunkleres Orange */
  --text-main: #f9fafb;
  --text-muted: #d6cdc6;
}

/* ------------------------------------------------ */
/* BASIS */
/* ------------------------------------------------ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(160deg,
    #1a0f0a 0%,
    #2a140b 40%,
    #3a180c 70%,
    #4a1d0e 100%
  );
  color: var(--text-main);
}

/* ------------------------------------------------ */
/* NAVBAR */
/* ------------------------------------------------ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(26, 15, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-weight: 700;
}

.logo-text {
  font-weight: 600;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: #f1efe8;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a0f0a;
  font-weight: 600;
}

/* ------------------------------------------------ */
/* HERO */
/* ------------------------------------------------ */

.hero {
  min-height: 85vh;
  background:
    linear-gradient(180deg, rgba(40, 22, 10, 0.6) 0%, rgba(20, 10, 5, 0.95) 100%),
    url('../img/Lumen.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 70px;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 2.9rem;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #1a0f0a;
}

.btn-ghost {
  border: 1px solid rgba(249, 250, 251, 0.6);
  color: #f9fafb;
  background: transparent;
}

.hero-meta {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero Card */
.hero-card {
  background: rgba(26, 15, 10, 0.92);
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 200, 150, 0.18);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.hero-card li span {
  font-weight: 600;
}

.hero-card .hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ------------------------------------------------ */
/* SECTION + GLOW */
/* ------------------------------------------------ */

.section {
  padding: 90px 24px;
  position: relative;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
}

.section::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), transparent);
}

.section::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.4), transparent);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ABOUT */
.about {
  background: rgba(26, 15, 10, 0.8);
}

/* Highlights */
.highlight {
  background: rgba(26, 15, 10, 0.92);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 200, 150, 0.18);
}

/* ------------------------------------------------ */
/* MENU */
/* ------------------------------------------------ */

.menu {
  background: rgba(45, 22, 9, 0.8);
}

.card {
  background: rgba(26, 15, 10, 0.92);
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 200, 150, 0.18);
}

/* ------------------------------------------------ */
/* AMBIENCE */
/* ------------------------------------------------ */

.ambience {
  background: rgba(26, 15, 10, 0.85);
}

.ambience-card {
  background: rgba(26, 15, 10, 0.92);
  border-radius: 16px;
  padding: 16px 18px 20px;
  border: 1px solid rgba(255, 200, 150, 0.18);
}

/* Ambiente Bilder */
/* Grundfläche für Ambiente-Bilder */

.ambience-image{
  width: 100%;
  height: 220px;              /* hier entsteht die sichtbare Bildhöhe */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.ambience-hauptrestaurant {
  background-image: url('../img/Lumen.png');
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.ambience-chef {
  background-image: url('../img/Lumen2.png');
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.ambience-private {
  background-image: url('../img/Table.png');
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover Zoom Effekt */
.ambience-image:hover {
  transform: scale(1.06);
  filter: brightness(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ------------------------------------------------ */
/* RESERVATION */
/* ------------------------------------------------ */

.reservation {
  background: rgba(45, 22, 9, 0.85);
}

.reservation-form {
  background: rgba(26, 15, 10, 0.92);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 200, 150, 0.18);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 200, 150, 0.25);
  background: rgba(18, 9, 5, 0.95);
  color: var(--text-main);
  font-family: inherit;
}

/* ------------------------------------------------ */
/* CONTACT */
/* ------------------------------------------------ */

.contact {
  background: rgba(26, 15, 10, 0.85);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.opening-hours span {
  font-weight: 600;
}

/* ------------------------------------------------ */
/* FOOTER */
/* ------------------------------------------------ */

.footer {
  padding: 16px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(18, 9, 5, 0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ------------------------------------------------ */
/* RESPONSIVE */
/* ------------------------------------------------ */

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }
}
