/* ========== STICKY FOOTER GRUNDLAGE ========== */
html, body {
  height: 100%;
}



/* Der Inhaltsbereich muss wachsen */
main {
  flex: 1;
}
/* ============================================= */


/* --- dein vorhandenes CSS --- */

body {
  background:
    radial-gradient(circle at 25% 30%, rgba(196, 0, 0, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(255, 0, 50, 0.15), transparent 60%),
    #000;
  background-attachment: fixed;
  background-blend-mode: screen;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Glow for titles */
h1, h2, h3 {
  text-shadow: 0 0 12px rgba(196, 0, 0, 0.6);
}

/* Links */
a {
  color: #c40000;
  text-decoration: none;
}
a:hover {
  color: #fff;
}

/* Navbar */
.navbar {
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar-brand {
  color: #fff !important;
   font-family: 'Germania One', cursive;
  font-size: 1.8rem;
  letter-spacing: 3px;
}
.navbar-brand span {
  color: #c40000;
  text-shadow: 0 0 8px rgba(196, 0, 0, 0.8);
}
.nav-link {
  color: #ccc !important;
  font-weight: 500;
}
.nav-link:hover {
  color: #fff !important;
}

/* Hero */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
}
.hero img {
  max-width: 180px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 20px rgba(196, 0, 0, 0.6));
}
.hero h1 {
 font-family: 'Germania One', cursive;
  font-size: 3.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero p {
  color: #aaa;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Über uns */
.about {
  padding: 80px 20px;
  text-align: center;
}
.about h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #c40000;
  margin-bottom: 25px;
  letter-spacing: 2px;
}
.about p {
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Cards */
.cards {
  padding: 60px 20px 80px;
}
.card-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.card-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(196, 0, 0, 0.6);
}
.card-glass h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: #c40000;
  letter-spacing: 2px;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* White Guest Cards */
.card-white {
  background: rgba(255,255,255,0.6);
  color: #000;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.card-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.45);
}
.card-white h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: #c40000;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.card-white p {
  font-size: 1rem;
  color: #333;
}
.guest-img {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Zwischenblock */
.mid-text {
  text-align: center;
  padding: 50px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.mid-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #c40000;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.mid-text p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Gallery */
.gallery {
  padding: 80px 20px;
  text-align: center;
}
.gallery h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #c40000;
  margin-bottom: 40px;
}
.gallery img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal-content {
  background: #000;
  border-radius: 15px;
  border: 1px solid #222;
}

/* Contact */
.contact {
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #222;
  background: #000;
}
.contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #c40000;
  margin-bottom: 25px;
}
.contact p {
  font-size: 1.1rem;
  color: #f5f5f5;
  margin-bottom: 10px;
}

/* Footer */
footer {
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
  letter-spacing: 1px;
  background: #000;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  z-index: 100;
  animation: pulse 2s infinite;
}
.whatsapp-float i {
  margin-top: 15px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  z-index: 200;
}
#cookie-banner button {
  background: #c40000;
  border: none;
  color: #fff;
  padding: 8px 16px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
}
#cookie-banner button:hover {
  background: #ff2b2b;
}

@media (max-width: 576px) {
  .hero {
    padding-top: 100px;
  }
}

/* FAQ */
.faq-container {
  max-width: 90%;
  margin: 50px auto;
  color: #fff;
}

.faq-container h2 {
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px 25px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, transform 0.25s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-2px);
}

.faq-question {
  cursor: pointer;
  font-size: 19px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  transition: transform 0.3s ease;
  font-size: 22px;
}

.faq-answer {
  display: none;
  margin-top: 15px;
  font-size: 16px;
  color: #e3e3e3;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(90deg);
}

/* CONTENT */
.container-box {
  max-width: 980px;
  margin: -10px auto 0;
  padding: 26px;
  margin-bottom:40px;

  background: var(--glass-bg);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow:
    0 4px 18px rgba(0,0,0,0.4),
    0 0 18px var(--glass-shadow);
}

h2 {
  font-family: 'Bebas Neue';
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 14px;
}

.x-card {
  background: rgba(15,15,15,0.45);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(196,0,0,0.18);
}

.x-title {
  font-family: 'Bebas Neue';
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}

.price {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin: 6px 0 14px;
}

.cta-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(196,0,0,0.85);
  border: 1px solid rgba(196,0,0,0.4);
  box-shadow: 0 0 12px rgba(196,0,0,0.3);
  transition: 0.2s;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}

