/* ============================================================
   Hermann Scherer Gold Programm 2026 – Hauptstylesheet
   Elegant Luxury Theme · Schwarz, Gold, Weiß
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --gold-dark: #9B7B2C;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.25);
  --shadow-card: 0 4px 30px rgba(0,0,0,0.4);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}
.brand-gold { color: var(--gold); font-size: 1.2rem; }
.brand-text { color: var(--white); }
.brand-year { color: var(--white-70); font-size: 0.8rem; margin-left: 0.3em; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--white-70);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark-2);
  border-top: 1px solid var(--white-10);
  padding: 1rem 2rem;
}
.mobile-menu a {
  color: var(--white-70);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--white-10);
  font-size: 1rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.btn-mobile {
  display: inline-block;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--black) !important;
  text-align: center;
  padding: 0.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 2rem 60px;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
              var(--black);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.03) 80px,
      rgba(201,168,76,0.03) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.03) 80px,
      rgba(201,168,76,0.03) 81px
    );
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(100vh); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px); }
}

.hero-content {
  flex: 1;
  max-width: 620px;
  animation: fadeInLeft 1s ease both;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-kicker {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-70);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-subtitle strong { color: var(--white); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white-10);
  border: 1px solid var(--white-30);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--white-70);
}
.badge-icon { color: var(--gold); }

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
  transition: var(--transition);
  margin-bottom: 1rem;
}
.btn-hero:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.6);
  transform: translateY(-2px);
}

.hero-urgency {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-image-wrapper {
  flex: 1;
  max-width: 480px;
  margin-left: 4rem;
  animation: fadeInRight 1s ease 0.3s both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.hero-img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  object-position: center;
  background: #000;
  transition: transform 0.6s ease;
  padding: 1rem;
}
.hero-image-frame:hover .hero-img { transform: scale(1.03); }
.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--gold);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-image-badge span { color: var(--gold); font-weight: 700; font-size: 1.1rem; display: block; }
.hero-image-badge small { color: var(--white-70); font-size: 0.75rem; }

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem 0;
}
.proof-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.proof-item {
  text-align: center;
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.proof-item span {
  font-size: 0.82rem;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--white-30);
}

/* ============================================================
   SECTION UTILS
   ============================================================ */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light { color: var(--white); }
.section-intro {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-intro.light { color: rgba(255,255,255,0.75); }

/* ============================================================
   IMAGE SHOWCASE
   ============================================================ */
.image-showcase {
  padding: 6rem 0;
  background: var(--black);
  overflow: hidden;
}
.showcase-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.showcase-text p {
  color: var(--white-70);
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.8;
}
.showcase-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.showcase-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5));
  transition: filter 0.4s ease, transform 0.4s ease;
}
.showcase-image img:hover {
  filter: drop-shadow(0 0 70px rgba(201, 168, 76, 0.8));
  transform: scale(1.03) rotate(-1deg);
}
.showcase-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0;
  background: var(--dark);
}
.about .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  color: var(--white-70);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.about-text p strong { color: var(--white); }
.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: center;
  background: #000;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--white-10);
  padding: 1.5rem;
}
.about-quote {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.5rem;
  border-radius: var(--radius);
  max-width: 280px;
  box-shadow: var(--shadow-card);
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.about-quote cite {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.7);
  font-style: normal;
}

/* ============================================================
   PROGRAMM
   ============================================================ */
.programm {
  padding: 6rem 0;
  background: var(--dark-2);
  text-align: center;
}
.programm .section-title { color: var(--white); }
.programm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.programm-card {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.programm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.programm-card:hover { 
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.programm-card:hover::before { transform: scaleX(1); }
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.programm-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.programm-card p {
  color: var(--white-70);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   VENUE
   ============================================================ */
.venue {
  padding: 6rem 0;
  background: var(--dark);
}
.venue-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.venue-text p {
  color: var(--white-70);
  margin-bottom: 1.2rem;
}
.venue-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.venue-features li {
  padding: 0.5rem 0;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-10);
}
.venue-features li:last-child { border-bottom: none; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.5);
}
.venue-image img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center;
  background: #000;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--dark-2);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}
.testimonial-card.featured {
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), var(--dark-3));
  box-shadow: var(--shadow-gold);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-author span {
  color: var(--white-70);
  font-size: 0.8rem;
}
.tp-badge {
  font-size: 0.72rem;
  color: var(--gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.tp-summary {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--white-70);
  font-size: 0.95rem;
}
.tp-stars-img { height: 28px; }
.tp-summary a { color: var(--gold); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-text {
  font-size: 1.05rem;
  color: var(--white-70);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.cta-feature {
  background: var(--white-10);
  border: 1px solid var(--white-30);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--white);
}
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.2rem 3rem;
  border-radius: var(--radius);
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.5);
  transition: var(--transition);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.btn-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 0 70px rgba(201, 168, 76, 0.7);
}
.cta-disclaimer {
  font-size: 0.82rem;
  color: var(--white-30);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 6rem 0;
  background: var(--dark);
}
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}
.faq-item {
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: rgba(201, 168, 76, 0.4); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer p {
  padding: 0 1.5rem 1.2rem;
  color: var(--white-70);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-answer a { color: var(--gold); }
.faq-cta {
  margin-top: 3rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4rem 0 0;
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  color: var(--white-70);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--white-30);
  line-height: 1.7;
}
.footer-disclaimer a { color: var(--gold-dark); }
.footer-links h4,
.footer-cta h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: var(--white-70);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold); }
.btn-footer {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.btn-footer:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.4);
}
.footer-tp {
  color: var(--gold);
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--white-30);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   PAGE STYLES (für Unterseiten)
   ============================================================ */
.page-hero {
  padding: 120px 2rem 60px;
  background: var(--dark);
  text-align: center;
  border-bottom: 1px solid var(--white-10);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero p { color: var(--white-70); font-size: 0.9rem; }
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.page-content p, .page-content li {
  color: var(--white-70);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.page-content ul, .page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content a { color: var(--gold); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  color: var(--white-70);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .programm-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column;
    padding: 100px 1.5rem 4rem;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-badges { justify-content: center; }
  .hero-image-wrapper {
    margin: 3rem 0 0;
    max-width: 100%;
  }

  .showcase-container { grid-template-columns: 1fr; gap: 3rem; }
  .showcase-image { order: -1; }

  .about .section-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-quote { position: static; margin-top: 1rem; max-width: 100%; }
  .about-image img { height: 320px; }

  .venue-inner { grid-template-columns: 1fr; gap: 3rem; }
  .venue-image { order: -1; }
  .venue-image img { height: 280px; }

  .programm-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .proof-divider { display: none; }
  .proof-container { gap: 1.5rem; }

  .footer-container { grid-template-columns: 1fr; gap: 2rem; }

  .cta-features { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .btn-hero, .btn-cta { padding: 0.9rem 1.8rem; font-size: 1rem; }
}
