* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
}

/* 🔥 BREITE DER SEITE */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
header {
  background-size: cover !important;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

header > * { position: relative; z-index: 2; }

/* Logo */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
}

.logo {
  width: 400px;
  height: 400px;
  max-width: 40vw;
  max-height: 40vw;
  object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
  transition: all 0.3s ease;
  transform: translateY(-60px);
}

.logo:hover {
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.8));
}

.logo-text {
  font-size: 1.8em;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  opacity: 0.9;
  transform: translateY(-40px);
}

.hero-text {
  font-size: 1.4em;
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 300;
  transform: translateY(-40px);
  position: relative;
}

/* CTA-Button (hier nicht genutzt, bleibt aber drin für später) */
.cta-button {
  display: inline-block;
  background: #2c3e50;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background: #34495e;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Under-Construction Inhalte im Hero */
.under-construction-text {
  max-width: 650px;
  margin: 0 auto 25px;
}

.opening-date {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f1c40f;
}

.phone-highlight {
  font-size: 1.3em;
  font-weight: 700;
  margin-top: 10px;
}

.phone-link {
  color: #ffffff;
  text-decoration: underline;
}

.info-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.info-badge {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.95em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Platzhalter für spätere Sections (falls du später wieder Inhalte ergänzt) */
section { padding: 80px 0; }

/* Responsive */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .logo {
    width: 150px;
    height: 150px;
    transform: translateY(-30px);
  }

  .logo-text {
    font-size: 1.4em;
    transform: translateY(-20px);
  }

  .hero-text {
    font-size: 1.2em;
    transform: translateY(-20px);
  }

  section { padding: 60px 0; }

  .under-construction-text { font-size: 1.1em; }
  .opening-date { font-size: 1.3em; }
  .phone-highlight { font-size: 1.1em; }
}

/* 🔥 WHATSAPP FLOATING BUTTON (falls du ihn weiter nutzen willst) */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  background: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  bottom: 70px;
  right: 70px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}

.page-footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9em;
}

.footer-links {
  text-align: center;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
