:root {
  --bg: #1E1E1E;
  --card: #2C2C2C;
  --muted: #c2c1c1;
  --accent: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #e0e0e0 100%);
  --accent-solid: #C0C0C0;
  --accent-hover: #FFFFFF;
  --text: #FFFFFF;
  --border: rgba(255, 255, 255, 0.1);
  --glass: rgba(30, 30, 30, 0.95);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shiny-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.2);
  --radius: 16px;
  --font-main: 'Open Sans Condensed', system-ui, -apple-system, sans-serif;
  --font-heading: 'Open Sans Condensed', sans-serif;
  --letter-spacing: .36em;
  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="light"] {
  --bg: #ffffff;
  --card: #cecaca;
  --muted: #303030;
  --accent: #c0c0c0;
  --accent-solid: #c0c0c0;
  --accent-hover: #7a7979;
  --text: #303030;
  --border: rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.95);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shiny-shadow: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--muted);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/libelle.png');
  background-attachment: fixed;
  background-position: fixed;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: 0.25;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.2;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: var(--shiny-shadow);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--accent);
  color: #1E1E1E;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--accent-solid);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline:hover {
  border-color: var(--accent-hover);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link img {
  height: 20px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: var(--shiny-shadow);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-hover);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  position: relative;
  width: 64px;
  height: 32px;
  background: var(--card);
  border-radius: 16px;
  cursor: pointer;
  user-select: none;
}

.lang-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  transition: .4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
  z-index: 2;
}

input:checked+.slider:before {
  transform: translateX(32px);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.social-link:hover {
  color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
  transform: translateY(-2px);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
}

.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  min-height: 150vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(192, 192, 192, 0.15);
  color: var(--accent-solid);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: var(--text);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  color: var(--muted);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  max-width: 75%;
}

.hero-image:hover {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--card);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.menu-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img {
  transform: scale(1.05);
}

.menu-content {
  padding: 24px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.menu-title {
  font-size: 1.25rem;
  color: var(--text);
  text-transform: uppercase;
}

.menu-price {
  font-weight: 700;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent-solid);
}

.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slide {
  display: none;
  animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
  z-index: 10;
}

.slide-nav:hover {
  background: rgba(192, 192, 192, 0.9);
  color: #1E1E1E;
}

.prev {
  left: 20px;
  border-radius: 0 8px 8px 0;
}

.next {
  right: 20px;
  border-radius: 8px 0 0 8px;
}

.dots-container {
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot:hover {
  background: rgba(192, 192, 192, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: var(--accent-solid);
  width: 32px;
  border-radius: 6px;
}

.reviews-container {
  background: var(--card);
  border-radius: 32px;
  padding: 64px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background: var(--bg);
  padding: 32px;
  border-radius: 24px;
}

.stars {
  color: #fbbf24;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

footer {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  margin-top: 100px;
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: .4;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    margin: 0 auto 40px;
  }

  .hero-content>div {
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .nav-links,
  .nav-actions .btn,
  .nav-actions .lang-switch {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav-actions {
    gap: 24px;
  }

  .slide img {
    height: 400px;
  }

  .slide-nav {
    padding: 12px 16px;
    font-size: 1.2rem;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

img[src$="logo.png"] {
  height: 60px;
}

.slide-title {
  position: absolute;
  bottom: 100px;
  /* höher */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 10;

  /* Zeilenumbruch & Zentrierung */
  white-space: normal;
  /* erlaubt Umbruch */
  text-align: center;
  max-width: 80%;
  /* verhindert überlange Zeilen */
  line-height: 1.4;
  word-break: break-word;
}

.slide.active .slide-title {
  opacity: 1;
}