/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #1a1a1a;
  color: white;
  scroll-behavior: smooth;
  letter-spacing: 0.2px; /* ➕ leicht aufgelockertes Grundspacing */
}

/* HEADER */
header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  z-index: 10;
}

.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: 0.8px; /* ➕ etwas weiter, edler Look */
}
.nav-links a:hover {
  color: #c9a866;
}

.logo {
  height: 50px;
}

/* VIDEO */
.video-container video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white; text-align: center;
}

.video-overlay h1 {
  font-size: 3em;
  margin-bottom: 0.3em;
  letter-spacing: 1.5px; /* ➕ großzügiger für Eleganz */
}
.video-overlay p {
  font-size: 1.2em;
  margin-bottom: 1.2em;
  letter-spacing: 0.5px; /* ➕ leichte Weitung für Lesbarkeit */
}

/* BUTTON */
.btn {
  background: #c9a866;
  color: #1a1a1a;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  letter-spacing: 0.8px; /* ➕ modernere Anmutung */
}
.btn:hover {
  background: #f5d47e;
}

/* SECTION */
.section {
  padding: 80px 10%;
  text-align: center;
}
.section.dark {
  background: #111;
}

.section p {
  letter-spacing: 0.4px; /* ➕ angenehm aufgelockert */
  line-height: 1.7;      /* ➕ mehr Zeilenabstand */
  max-width: 900px;      /* ➕ bessere Lesbarkeit auf großen Bildschirmen */
  margin: 0 auto;
  font-weight: 300;
}

/* HEADINGS */
h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #c9a866;
  letter-spacing: 1.2px; /* ➕ mehr Luft zwischen Buchstaben */
}

/* SERVICE BOXES */
.service-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.box {
  flex: 1 1 250px;
  background: #222;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #333;
  letter-spacing: 0.4px; /* ➕ gleichmäßiger Schriftfluss */
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.menu-item {
  background: #222;
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #c9a866;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}
.menu-item:hover {
  background: #c9a866;
  color: #1a1a1a;
  transform: scale(1.05);
}

/* IFRAME */
iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-bottom: 30px;
}

/* FOOTER */
footer {
  background: #000;
  color: #888;
  text-align: center;
  padding: 30px 10%;
  letter-spacing: 0.4px; /* ➕ sanft aufgelockert */
}
.footer-logo {
  height: 60px;
  margin-bottom: 10px;
}

/* ACCORDION - Speisekarte */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  background: #222;
  border: 1px solid #c9a866;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  background: #c9a866;
  color: #1a1a1a;
  cursor: pointer;
  padding: 15px 20px;
  width: 100%;
  font-weight: bold;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1em;
  transition: background 0.3s ease;
  letter-spacing: 0.6px; /* ➕ klarer, edler Look */
}

.accordion-header:hover {
  background: #f5d47e;
}

.accordion-content {
  display: none;
  background: #111;
  padding: 20px 30px;
  color: #fff;
  letter-spacing: 0.3px; /* ➕ Lesefreundlicher */
}

.accordion-content ul {
  list-style: none;
  padding: 0;
}

.accordion-content li {
  padding: 8px 0;
  border-bottom: 1px solid #333;
  font-size: 1.05em;
  line-height: 1.6; /* ➕ ruhigeres Schriftbild */
}
.accordion-content li:last-child {
  border-bottom: none;
}

.accordion-item.active .accordion-content {
  display: block;
}


