  :root{
    --bg: #0a0a0a;
    --panel: #0f0f0f;
    --gold: #D4AF37;
    --muted: #bdbdbd;
    --glass: rgba(255,255,255,0.03);
    --max-width: 1100px;
  }
  /* Reset & base */
  *{box-sizing:border-box}
  html,body{height:100%;margin:0;background:var(--bg);color:#fff;font-family:Montserrat,system-ui,Arial,sans-serif;-webkit-font-smoothing:antialiased}
  a{color:inherit}
  img{max-width:100%;display:block}

  /* Layout */
  .container{width:94%;max-width:var(--max-width);margin:0 auto;padding:28px 0}
  header.site-header{position:fixed;top:0;left:0;right:0;z-index:1200;background:linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(10,10,10,0));backdrop-filter: blur(7px);padding:10px 0}
  .site-header .inner{width:94%;max-width:var(--max-width);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:12px}
  .logo img{height:50px}

  /* Hamburger (fills parent by default) - we will place it top-right */
  .menu-container{position:relative}
  .menu-btn{
    width:56px;height:56px;border:0;background:transparent;cursor:pointer;display:grid;place-items:center;
    z-index:9999; position:relative;
  }
  .menu-btn span{display:block;width:28px;height:2px;background:var(--gold);border-radius:2px;position:relative;transition:all .35s ease}
  .menu-btn span::before, .menu-btn span::after{content:"";position:absolute;left:0;right:0;height:2px;background:var(--gold);border-radius:2px;transition:all .35s ease}
  .menu-btn span::before{transform: translateY(-9px)}
  .menu-btn span::after{transform: translateY(9px)}
  .menu-btn.active span{background:transparent}
  .menu-btn.active span::before{transform: translateY(0) rotate(45deg)}
  .menu-btn.active span::after{transform: translateY(0) rotate(-45deg)}


  .menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  background: var(--gold);
}

/* Hamburger aktiv -> X */
.menu-btn.active span { background: transparent; }
.menu-btn.active span::before,
.menu-btn.active span::after {
  background: gold; /* hier das X gold */
}



  /* Fullscreen nav overlay */
  .nav-overlay{
    position:fixed;inset:0;display:flex;align-items:center;justify-content:center;
    background:linear-gradient(180deg, rgba(0,0,0,0.96), rgba(0,0,0,0.97));
    opacity:0;pointer-events:none;transform:translateY(6px);transition:opacity .5s ease, transform .5s cubic-bezier(.2,.9,.2,1);
    z-index:1300;padding:28px;
  }
  .nav-overlay.open{opacity:1;pointer-events:auto;transform:translateY(0)}
  .nav-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:18px}
  .nav-list a{font-size:clamp(20px,6vw,30px);color:var(--gold);text-decoration:none;font-weight:700}
  .nav-cta{display:inline-block;margin-top:18px;background:var(--gold);color:#111;padding:12px 22px;border-radius:999px;text-decoration:none;font-weight:700}

.nav-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* alles zentrieren */
}

.overlay-logo {
  margin-bottom: 40px; /* Abstand zu Navigation */
}

.overlay-logo img {
  width: 150px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.overlay-logo img:hover {
  transform: scale(1.05);
}
  /* Hero slideshow */
  .hero{position:relative;top:78px;height:76vh;min-height:420px;max-height:980px;overflow:hidden}
  .slide{position:absolute;inset:0;opacity:0;transition:opacity 1.4s ease;display:flex;align-items:center;justify-content:center}
  .slide.active{opacity:1}
  .slide img{width:100%;height:100%;object-fit:cover;filter:brightness(.45)}
  .hero .caption{position:absolute;left:5%;bottom:14%;color:var(--gold);max-width:680px;text-shadow:0 6px 30px rgba(0,0,0,0.6)}
  .hero h1{font-size:clamp(22px,5vw,44px);margin:0 0 10px;line-height:1.04;font-weight:700}
  .hero p{margin:0;font-size:clamp(14px,2.4vw,18px);color:#fff;font-weight:500}

  /* Quick CTA under hero */
  .hero .cta{margin-top:16px;display:inline-block;background:var(--gold);padding:10px 18px;border-radius:999px;color:#111;font-weight:700;text-decoration:none}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1400;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  transform: translateY(-4px);
}


  /* Sections */
  section{padding:68px 0}
  h2.section-title{font-size:20px;color:var(--gold);margin:0 0 12px;font-weight:700;text-align: center !important;
  width: 100%;
  margin: 0 auto 1rem;
  display: block;}
  .row{display:flex;gap:28px;flex-wrap:wrap;align-items:stretch}

/* === Services Base === */
/* Neue Services Section mit Fokus auf 3 Cards */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}

.services .card {
  flex: 1 1 300px;
  max-width: 340px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.12);
}

.services .icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 12px;
}

.services h3 {
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 8px;
}

.services p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Pulsierender Button */
.services-button {
  text-align: center;
}

.btn-pulse {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.btn-pulse:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}


/* Smooth reveal animation (JS gesteuert) */
.reveal .card {
  transition: transform 0.6s ease, opacity 0.6s ease;
}
  /* Gallery */
  .gallery .gimg{aspect-ratio:4/3;background:var(--glass);display:block;border-radius:8px;overflow:hidden}
  .gallery .gimg img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease}
  .gallery .gimg:hover img{transform:scale(1.06)}
  .gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.gallery {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Lightbox Style */
.lightbox {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  animation: fadeIn 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: gold;
  cursor: pointer;
}

/* === Events Section === */
.events-section {
  background: radial-gradient(circle at top, #0b0b0b 0%, #000 100%);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: gold;
  margin: 10px auto 30px;
  border-radius: 2px;
  animation: glowLine 2s ease-in-out infinite alternate;
}

@keyframes glowLine {
  from { box-shadow: 0 0 10px gold; }
  to { box-shadow: 0 0 25px gold; }
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 4rem;
}

/* === Timeline Cards === */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, gold, transparent);
  transform: translateX(-50%);
  opacity: 0.4;
}

.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

.event-card:hover {
  border-color: gold;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.event-icon {
  font-size: 2rem;
  color: gold;
  margin-bottom: 0.5rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.event-content h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.event-content p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

.event-date {
  color: gold;
  font-weight: 500;
  font-size: 0.95rem;
}

/* === Responsive === */
@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .timeline::before {
    display: none;
  }

  .event-card {
    width: 280px;
  }
}


@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
  /* Reviews */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.03);
  padding: 16px;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease;
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid gold;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: gold;
  flex-shrink: 0;
}

.speechbubble {
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 12px 18px;
  position: relative;
}

.speechbubble strong {
  display: block;
  color: gold;
  margin-bottom: 6px;
}

.stars {
  color: gold;
  font-weight: 700;
  text-shadow: 0 0 2px gold;
  margin-bottom: 6px;
  transition: text-shadow 0.3s ease;
}

.stars.glow {
  text-shadow: 0 0 12px gold;
}

.comment {
  color: #fff;
  font-size: 0.95rem;
  white-space: pre-wrap;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
  border:1px solid var(--gold);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: gold;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px; /* ausreichend für längere Antworten */
  padding: 12px 20px 16px 20px;
}

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

.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.03);
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-title {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  background: #0b0b0b;
  color: #fff;
  font-size: 0.95rem;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,0.25);
  outline: none;
}

.contact-card button {
  background: var(--gold);
  color: #111;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.social-icons {
  display: flex;
  gap: 14px;
  font-size: 22px;
  justify-content: center;
}

.social-icons a {
  color: var(--gold);
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #fff;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}

.site-footer {
  position: relative;
  color: #fff;
  font-size: 13px;
  margin-top: 40px;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  filter: brightness(0.3) blur(1px);
  z-index: 0;
}
.footer-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  width: 94%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 0 20px 0;
  z-index: 1;
}
.footer-column {
  min-width: 160px;
}
.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-column a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 12px 0 20px 0;
  color: var(--muted);
}
@media (max-width: 768px) {
  .footer-container { flex-direction: column; align-items: center; gap: 16px; }
  .footer-column { text-align: center; }
}

/*Partner*/
.partner-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, #0b0b0b, #151515);
  text-align: center;
  overflow: hidden;
}

.partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bg-texture.jpg") center/cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.partner-section h2 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 70px;
  letter-spacing: 1px;
}

.partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  padding: 0 60px;
}

.partner-item {
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  opacity: 0.7;
  filter: grayscale(100%) brightness(1.2);
}

.partner-item:hover {
  transform: translateY(-5px) scale(1.05);
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

.partner-item img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

/* dezente Schwebeanimation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.partner-item:nth-child(odd) {
  animation: float 6s ease-in-out infinite;
}

.partner-item:nth-child(even) {
  animation: float 7s ease-in-out infinite reverse;
}


.legal-section {
  background: var(--bg);
  color: var(--muted);
  padding: 80px 20px;
  text-align: left;
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 1.6;
}

.legal-section h2 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.legal-content h3 {
  color: var(--gold);
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.legal-content ul li {
  margin-bottom: 5px;
}

.legal-content strong {
  color: #fff;
}



/* Equipment Section */
.equipment {
  text-align: center;
  padding: 80px 20px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.equip-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.1);
}

.equip-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.equip-card h3 {
  color: var(--gold);
  margin: 16px 0 8px;
}

.equip-card p {
  color: var(--muted);
  padding: 0 18px 20px;
  font-size: 15px;
  line-height: 1.5;
}

.equip-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 22px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.equip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212,175,55,0.2);
}


/* Responsive */
@media (max-width:768px){
  .review { flex-direction: column; align-items: center; text-align: center; }
  .avatar { margin-bottom: 8px; }
}

  /* Events */
  .events{display:flex;flex-direction:column;gap:12px}
  .event{display:flex;gap:12px;align-items:center;background:rgba(255,255,255,0.02);padding:12px;border-radius:10px}
  .event .date{background:#111;padding:8px 10px;border-radius:8px;color:var(--gold);font-weight:700}

  /* Contact */
  .contact-grid{display:grid;grid-template-columns:1fr;gap:12px}
  .contact-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:14px;border-radius:10px;border:1px solid rgba(255,255,255,0.03)}
  .contact-row{display:flex;gap:12px;align-items:center}
  .contact-row .icon{font-size:20px;color:var(--gold);width:36px;text-align:center}

  /* footer */
  footer{padding:28px 0;border-top:1px solid rgba(255,255,255,0.03);color:var(--muted);font-size:13px}

  /* Reveal animations (IntersectionObserver) */
  .reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease, transform .7s ease}
  .reveal.show{opacity:1;transform:none}

  /* Responsive tweaks */
  @media (max-width:800px){
    .hero{height:58vh;min-height:340px}
    .hero .caption{left:6%;right:6%;bottom:12%}
    .menu-btn{width:52px;height:52px}
  }
  @media (max-width:480px){
    .hero h1{font-size:20px}
    .hero p{font-size:14px}
    .menu-btn{width:48px;height:48px}
  }
