/* ═══════════════════════════════════════════
   GLOBAL STYLES – Duo Maximo Redesign
   Shared across all pages: reset, tokens,
   top-bar, header/nav, footer, utilities
   ═══════════════════════════════════════════ */

/* === RESET & TOKENS === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --gold: #c8956c;
  --gold-light: #ddb892;
  --dark: #111;
  --dark-2: #181818;
  --dark-3: #1e1e1e;
  --dark-4: #252525;
  --cream: #faf9f7;
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.75);
  --text-bright: rgba(255,255,255,0.92);
  --text-dark: #2d2d2d;
  --text-muted: #666;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', sans-serif;
  --heading: 'Space Grotesk', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 60px;
}
main { background: var(--cream); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === REVEAL ANIMATIONS === */

/* Erste Sektion nach Hero: sofort sichtbar, keine Animation */
.page-hero + .content-section .reveal,
.marquee + .section .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* === TOP BAR === */
.top-bar {
  background: #000;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left { display: flex; align-items: center; gap: 8px; }
.top-bar-left .phone-icon { color: var(--gold); font-size: 16px; }
.top-bar-right { display: flex; gap: 20px; }

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Scrolled state: dark transparent */
.header.scrolled-light {
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Hidden on scroll down */
.header.nav-hidden { transform: translateY(-100%); }

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.logo img { height: 42px; width: auto; filter: brightness(1.1); }

/* Nav menu */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav-menu li a {
  display: block;
  padding: 10px 14px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.3s, color 0.3s;
  position: relative;
  border-radius: 6px;
}
.nav-menu li a:hover { background: rgba(255,255,255,0.1); }
.nav-menu li.active > a { color: var(--gold-light); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-3);
  min-width: 220px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.dropdown a:hover {
  background: rgba(200,149,108,0.1);
  color: var(--gold-light);
}

/* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.menu-toggle:hover { border-color: rgba(255,255,255,0.6); }
.hamburger-icon { display: flex; flex-direction: column; gap: 4px; }
.hamburger-icon span { width: 20px; height: 2px; background: #fff; transition: 0.3s; display: block; }

/* Mobile menu close */
.menu-close {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
}
.nav-overlay.open { display: block; }

/* Menu CTA button */
.menu-cta a {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 18px !important;
}
.menu-cta a:hover { background: #b8854f !important; }

/* === FOOTER === */
.footer {
  background: #000;
  color: rgba(255,255,255,0.6);
  padding: 28px 20px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer .container { display: flex; justify-content: space-between; align-items: center; }
.footer a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer a:hover { color: var(--gold-light); }
.footer-links { display: flex; gap: 20px; }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(200,149,108,0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* === RESPONSIVE === */
@media (max-width: 1080px) {
  .header .container { padding: 14px 16px; }
  .header nav { position: fixed; }
  .logo img { height: 38px; }
  .menu-toggle { display: flex; padding: 10px; }
  .hamburger-icon { gap: 5px; }
  .hamburger-icon span { width: 24px; height: 2.5px; }
  .menu-close { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    align-items: stretch;
    padding: 60px 0 20px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    transition: right 0.35s var(--ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu li a {
    padding: 13px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-menu li a::after { display: none; }
  .has-dropdown > a::after {
    display: inline-block !important;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s;
    color: rgba(255,255,255,0.4);
  }
  .has-dropdown.dropdown-open > a::after {
    transform: rotate(180deg);
    color: var(--gold);
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--gold);
    margin-left: 20px;
  }
  .has-dropdown.dropdown-open .dropdown { display: block; }
  .dropdown a {
    padding-left: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }
  .dropdown a:hover { color: var(--gold-light); }
  .top-bar-right { display: none; }
}

@media (max-width: 600px) {
  .footer .container { flex-direction: column; gap: 10px; text-align: center; }
  .scroll-top { display: none !important; }
}

/* ═══════════════════════════════════════════
   PAGE COMPONENTS – Shared across content pages
   Hero, sections, content, locations, demos,
   reviews, benefits, crosslinks, CTA, buttons
   ═══════════════════════════════════════════ */

/* === PAGE HERO === */
.page-hero {
  position: relative; min-height: 55vh; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden; padding-top: 30px;
}
.page-hero-img { position: absolute; inset: 0; }
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hochzeitsband-stimmung.jpg');
  background-size: cover; background-position: center;
  filter: grayscale(40%) saturate(0.7);
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(40,25,15,0.4) 0%, rgba(30,18,10,0.6) 50%, rgba(17,17,17,0.95) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 40px 20px; }
.page-hero-label {
  font-family: var(--heading); font-size: 13px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 14px; opacity: 0; animation: fadeIn 0.5s forwards;
}
.page-hero-title {
  font-family: var(--serif); font-size: clamp(32px, 6vw, 60px);
  font-weight: 700; color: #fff; line-height: 1.1;
  opacity: 0; animation: fadeIn 0.5s forwards;
}
.page-hero-sub {
  font-size: clamp(15px, 2vw, 19px); font-weight: 300;
  color: rgba(255,255,255,0.75); margin-top: 20px; max-width: 520px;
  margin-left: auto; margin-right: auto;
  opacity: 0; animation: fadeIn 0.5s forwards;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,149,108,0.25); border: 1px solid rgba(200,149,108,0.5);
  border-radius: 50px; padding: 10px 24px; margin-top: 28px;
  font-family: var(--heading); font-size: 14px; font-weight: 500;
  color: var(--gold-light); text-transform: uppercase; letter-spacing: 1px;
  opacity: 0; animation: fadeIn 0.5s forwards;
}
.hero-badge i { font-size: 16px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === SECTIONS === */
.section { padding: 90px 20px; }
.section-header { text-align: center; margin-bottom: 55px; }
.section-label {
  font-family: var(--heading); font-size: 12px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700; margin-bottom: 16px;
}
.section-title.dark { color: var(--text-dark); }
.section-light { background: var(--cream); padding: 90px 20px; }
.section-subtitle { font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-subtitle.dark { color: var(--text-muted); }
.section-line { width: 45px; height: 3px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }

/* === CONTENT === */
.content-section { background: var(--cream); padding: 90px 20px; }
.content-inner { max-width: 800px; margin: 0 auto; }
.content-inner h1 {
  font-family: var(--serif); font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700; color: var(--text-dark); margin-bottom: 24px; line-height: 1.2;
}
.content-inner h2 {
  font-family: var(--serif); font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700; color: var(--text-dark); margin-bottom: 24px; line-height: 1.2;
}
.content-inner h3 {
  font-family: var(--serif); font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700; color: var(--text-dark); margin: 40px 0 16px; line-height: 1.3;
}
.content-inner p {
  font-size: 17px; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px;
}
.content-inner strong { color: var(--text-dark); }

/* === LOCATIONS === */
.locations-section { background: #fff; padding: 90px 20px; }
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.location-card {
  padding: 30px; background: var(--cream); border-radius: 8px;
  border: 1px solid rgba(200,149,108,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.location-card h3 {
  font-family: var(--heading); font-size: 16px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.location-card .location-type {
  font-family: var(--heading); font-size: 11px; font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.location-card p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* === DEMOS === */
.demos-section { background: var(--dark); padding: 90px 20px; }
.demos-section .section-title { color: #fff; }
.demos-section .section-label { color: var(--gold-light); }
.demos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.demo-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 16px; display: flex; align-items: center;
  gap: 14px; cursor: pointer; transition: all 0.3s ease;
}
.demo-card:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(200,149,108,0.3);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.demo-card.playing { background: rgba(200,149,108,0.15); border-color: var(--gold); }
.demo-play {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 14px;
  transition: all 0.3s;
}
.demo-card:hover .demo-play { background: var(--gold); color: #fff; }
.demo-card.playing .demo-play { background: var(--gold); color: #fff; }
.demo-card.playing .demo-play .fa-play { display: none; }
.demo-info { min-width: 0; }
.demo-genre {
  font-family: var(--heading); font-size: 10px; font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2px;
}
.demo-title {
  font-family: var(--heading); font-size: 14px; font-weight: 600;
  color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.demo-artist {
  font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.soundwave {
  display: none; align-items: flex-end; gap: 2px;
  height: 20px; margin-left: auto; flex-shrink: 0;
}
.demo-card.playing .soundwave { display: flex; }
.soundwave-bar {
  width: 3px; background: var(--gold); border-radius: 2px;
  animation: soundwave 0.8s ease-in-out infinite alternate;
}
.soundwave-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.soundwave-bar:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.soundwave-bar:nth-child(3) { height: 40%; animation-delay: 0.4s; }
.soundwave-bar:nth-child(4) { height: 80%; animation-delay: 0.1s; }
@keyframes soundwave { to { height: 20%; } }

/* === REVIEWS === */
.reviews-section { background: var(--cream); padding: 90px 20px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.review-card {
  background: #fff; padding: 32px; border-radius: 8px;
  border: 1px solid rgba(200,149,108,0.15); position: relative;
}
.review-card::before {
  content: '\201C'; font-family: var(--serif); font-size: 60px;
  color: var(--gold); opacity: 0.2; position: absolute; top: 16px; left: 24px; line-height: 1;
}
.review-text {
  font-size: 15px; line-height: 1.7; color: var(--text-muted);
  font-style: italic; margin-bottom: 20px; padding-top: 10px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(200,149,108,0.12); display: flex;
  align-items: center; justify-content: center; color: var(--gold); font-size: 16px;
}
.review-name {
  font-family: var(--heading); font-size: 14px; font-weight: 600; color: var(--text-dark);
}
.review-event { font-size: 12px; color: var(--text-muted); }

/* === BENEFITS === */
.benefits-section { background: #fff; padding: 90px 20px; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 1000px; margin: 0 auto;
}
.benefit-card {
  text-align: center; padding: 40px 30px;
  background: var(--cream); border-radius: 8px;
  border: 1px solid rgba(200,149,108,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.benefit-icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,149,108,0.12); border-radius: 50%; color: var(--gold); font-size: 22px;
}
.benefit-card h3 {
  font-family: var(--heading); font-size: 16px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
}
.benefit-card p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* === CROSSLINKS === */
.crosslinks-section { background: var(--cream); padding: 90px 20px; border-top: 1px solid rgba(0,0,0,0.06); }
.crosslinks-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 800px; margin: 0 auto;
}
.crosslink {
  display: inline-block; padding: 10px 22px; font-family: var(--heading);
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 50px;
  text-decoration: none; transition: all 0.3s ease; letter-spacing: 0.5px;
}
.crosslink:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.crosslink.current { background: var(--gold); color: #fff; border-color: var(--gold); pointer-events: none; }
.crosslink.main-link {
  background: var(--gold); color: #fff; border-color: var(--gold); font-weight: 600;
}
.crosslink.main-link:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: 0 4px 15px rgba(200,149,108,0.35);
}

/* === CTA === */
.cta-section { background: var(--dark); padding: 80px 20px; text-align: center; }
.cta-section h2 {
  font-family: var(--serif); font-size: clamp(26px, 4vw, 38px);
  font-weight: 700; color: #fff; margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 30px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; font-family: var(--heading); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; border: none; border-radius: 3px;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,149,108,0.35); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* === MONEY LINK === */
.money-link-wrap {
  text-align: center; padding: 0 20px 0; margin-top: -40px; margin-bottom: 30px;
}
.money-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--heading); font-size: 15px; font-weight: 600;
  color: var(--gold); text-decoration: none; letter-spacing: 0.5px;
  padding: 14px 30px; border: 2px solid var(--gold); border-radius: 50px;
  transition: all 0.3s ease; background: rgba(200,149,108,0.06);
}
.money-link:hover {
  background: var(--gold); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,149,108,0.3);
}
.money-link i { font-size: 13px; transition: transform 0.3s; }
.money-link:hover i { transform: translateX(4px); }

/* === PAGE COMPONENTS RESPONSIVE === */
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card { padding: 30px 20px; }
  .locations-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .demos-grid { grid-template-columns: 1fr; }
  .page-hero-overlay {
    background: linear-gradient(to bottom, rgba(17,17,17,0.5) 0%, rgba(17,17,17,0.7) 50%, rgba(17,17,17,0.95) 100%);
  }
}
