/* =========================================================
   VARIABLEN & RESET
   ========================================================= */
:root {
  --primary-red:  #A31621;
  --accent-red:   #C9184A;
  --gold:         #D4AF37;
  --black:        #0a0a0a;
  --dark-gray:    #111111;
  --mid-gray:     #1a1a1a;
  --light-gray:   #252525;
  --text-gray:    #d4d4d4;
  --text-muted:   #999999;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--text-gray);
  line-height: 1.8;
  overflow-x: hidden;
}

img, video, svg, canvas { max-width: 100%; height: auto; }

.hidden { display: none !important; }

/* =========================================================
   TYPOGRAFIE
   ========================================================= */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

h2 {
  font-size: 3.5em;
  color: white;
  margin-bottom: 35px;
  letter-spacing: 6px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gold);
}

h2::before {
  content: attr(data-shadow);
  position: absolute;
  top: 0; left: 0;
  color: var(--primary-red);
  opacity: 0.15;
  z-index: -1;
  transform: translate(3px, 3px);
  pointer-events: none;
  white-space: nowrap;
}

p {
  font-size: 1.05em;
  margin-bottom: 25px;
  max-width: 900px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-gray);
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1em;
  margin-top: 5px;
  margin-bottom: 50px;
  font-style: italic;
  letter-spacing: 1px;
}

.red-text   { color: var(--primary-red); font-weight: 500; }
.gold-text  { color: var(--gold); font-weight: 500; }
.highlight  { color: var(--gold); font-style: italic; }

p a {
  color: var(--gold);
  text-decoration: none;
  font-style: italic;
  transition: all 0.3s ease;
}
p a:hover { color: white; }

/* =========================================================
   SECTIONS (BASIS)
   ========================================================= */
section {
  padding: 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 100;
  background: var(--black);
}

section::before, section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
section::before { top: 0; }
section::after  { bottom: 0; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.main-nav {
  position: absolute;
  top: 40px;
  right: 50px;
  z-index: 1000;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover { color: var(--gold); }
.main-nav ul li a:hover::after { width: 100%; }

/* Burger */
.burger-menu {
  display: none;
  position: fixed;
  top: 30px; right: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1003;
  width: 30px; height: 24px;
}

.burger-menu span {
  width: 30px; height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  display: block;
}

.burger-menu.active span { position: absolute; top: 11px; }
.burger-menu.active span:nth-child(1) { transform: rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg); }

/* =========================================================
   AGE MODAL
   ========================================================= */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}

.age-modal-content {
  background: var(--black);
  padding: 80px 70px;
  border: 1px solid var(--gold);
  text-align: center;
  max-width: 600px;
  box-shadow: 0 0 100px rgba(212,175,55,0.2), 0 30px 80px rgba(0,0,0,0.8);
  position: relative;
}

.age-modal-content::before,
.age-modal-content::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.age-modal-content::before { top: 30px; }
.age-modal-content::after  { bottom: 30px; }

.age-modal-content h2 {
  color: white;
  font-size: 3em;
  margin-bottom: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.age-modal-content p {
  font-size: 1em;
  margin-bottom: 50px;
  line-height: 2;
  color: var(--text-gray);
}
.age-modal-content p strong { color: var(--gold); font-weight: 400; }

.age-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 18px 50px;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  margin: 0 10px;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

.age-btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}
.age-btn:hover::before { width: 100%; height: 100%; }
.age-btn:hover { color: var(--black); box-shadow: 0 0 30px rgba(212,175,55,0.4); }

.age-btn.exit { border-color: var(--text-muted); color: var(--text-muted); }
.age-btn.exit::before { background: var(--light-gray); }
.age-btn.exit:hover { color: white; border-color: white; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  /* Reset section styles */
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.hero::before, .hero::after { display: none; }

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Desktop: vollbild */
.hero-image .hero-desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile: versteckt, bis breakpoint greift */
.hero-image .hero-mobile {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 2em;
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--mid-gray) 100%);
}

.about .text-left-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about .text-left-wrapper p,
.about .text-left-wrapper ul {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-list { list-style: none; padding-left: 0; }

.about-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.about-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* =========================================================
   TERMINE / UPDATES
   ========================================================= */
.updates {
  background: linear-gradient(180deg, var(--mid-gray) 0%, var(--black) 100%);
  padding: 80px 20px;
}

.updates-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.termin-ort { margin-bottom: 40px; }
.termin-ort:last-child { margin-bottom: 0; }

.termin-ort h3 {
  color: var(--gold);
  font-size: 1.5em;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.studio-name {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 15px;
}

.studio-name a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.studio-name a:hover { color: var(--gold); }

.termin-ort ul {
  list-style: none;
  padding: 0; margin: 0;
}

.termin-ort ul li {
  color: var(--text-gray);
  font-size: 1em;
  padding: 5px 0;
}

.auf-anfrage { color: var(--text-muted); font-style: italic; }

/* =========================================================
   SESSIONS
   ========================================================= */
.sessions { background: var(--black); }

.session-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.session-item {
  background: var(--dark-gray);
  padding: 60px 50px;
  border: 1px solid var(--gold);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.session-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--primary-red));
  transition: height 0.5s ease;
}
.session-item:hover::before { height: 100%; }
.session-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(212,175,55,0.2); }

.session-item h3 {
  color: var(--gold);
  font-size: 1.8em;
  margin-bottom: 20px;
  letter-spacing: 3px;
  font-weight: 300;
  text-align: center;
}

.session-item p { color: var(--text-gray); font-size: 0.95em; margin-bottom: 0; }
.session-item p:first-of-type { flex-grow: 1; margin-bottom: 20px; }
.session-item p:last-of-type  { margin-top: auto; }
.session-item strong { color: var(--primary-red); font-weight: 500; }

/* =========================================================
   VORLIEBEN & TABUS
   ========================================================= */
.preferences {
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.pref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.pref-column {
  background: var(--mid-gray);
  padding: 50px;
  border: 1px solid var(--light-gray);
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.pref-column::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.pref-column.vorlieben::before { background: linear-gradient(90deg, var(--gold), var(--accent-red)); }
.pref-column.tabus::before     { background: linear-gradient(90deg, var(--primary-red), #8B0000); }

.pref-column:hover { border-color: var(--gold); box-shadow: 0 10px 40px rgba(0,0,0,0.4); }

.pref-column h3 {
  font-size: 2em;
  margin-bottom: 35px;
  letter-spacing: 4px;
  font-weight: 300;
  text-transform: uppercase;
}
.pref-column.vorlieben h3 { color: var(--gold); }
.pref-column.tabus h3     { color: var(--accent-red); }

.pref-column ul { list-style: none; }

.pref-column ul li {
  padding: 14px 0 14px 35px;
  position: relative;
  font-size: 1em;
  color: var(--text-gray);
  font-weight: 300;
  border-bottom: 1px solid var(--light-gray);
  transition: padding-left 0.3s ease, color 0.3s ease;
  min-height: 40px;
}
.pref-column ul li:last-child { border-bottom: none; }
.pref-column ul li:hover { padding-left: 40px; color: white; }

.pref-column ul li::before {
  position: absolute;
  left: 0; top: 16px;
  font-size: 1.4em;
  font-weight: bold;
}
.vorlieben ul li::before { content: '✓'; color: var(--gold); }
.tabus ul li::before     { content: '✗'; color: var(--accent-red); }

/* =========================================================
   GALERIE & LIGHTBOX
   ========================================================= */
.gallery { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--mid-gray);
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--primary-red));
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: overlay;
}

.gallery-item:hover { border-color: var(--gold); box-shadow: 0 15px 50px rgba(212,175,55,0.2); }
.gallery-item:hover::after { opacity: 0.3; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: grayscale(30%) brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.08); filter: none; }

.load-more-container { text-align: center; margin-top: 60px; }

.load-more-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 18px 50px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}
.load-more-btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}
.load-more-btn:hover::before { width: 100%; height: 100%; }
.load-more-btn:hover { color: var(--black); box-shadow: 0 0 30px rgba(212,175,55,0.4); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; }

.lightbox img {
  max-width: 80%; max-height: 80%;
  object-fit: contain;
  box-shadow: 0 0 100px rgba(212,175,55,0.3);
}

.lightbox-close {
  position: absolute;
  top: 40px; right: 50px;
  color: var(--gold);
  font-size: 50px;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  font-weight: 300;
}
.lightbox-close:hover { color: white; transform: rotate(90deg); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 60px;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  padding: 20px;
  font-weight: 300;
}
.lightbox-prev:hover, .lightbox-next:hover { color: white; transform: translateY(-50%) scale(1.2); }
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* =========================================================
   VIDEOS
   ========================================================= */
.videos {
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--mid-gray) 100%);
  padding: 80px 40px;
}

.video-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto 0;
  max-width: 600px;
}

.video-tab {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 15px 40px;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.video-tab::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
}
.video-tab:hover::before,
.video-tab.active::before { width: 100%; height: 100%; }
.video-tab:hover,
.video-tab.active { color: var(--black); }

.video-content {
  max-width: 1200px;
  margin: 40px auto 0;
}

.video-item { display: none; }
.video-item.active { display: block; }

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--gold);
  overflow: hidden;
  background: #000;
  transition: box-shadow 0.4s ease;
}
.video-container:hover { box-shadow: 0 10px 40px rgba(212,175,55,0.3); }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  transition: filter 0.5s ease;
}
.video-container:hover .hero-video { filter: brightness(1); }

.hero-video:fullscreen,
.hero-video:-webkit-full-screen {
  object-fit: contain !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #000 !important;
  filter: none !important;
}

.video-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-container:hover .video-overlay { opacity: 1; }

.video-caption {
  color: var(--gold);
  font-size: 1.2em;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.video-play-overlay.hidden { opacity: 0; pointer-events: none; }

.video-play-btn {
  background: rgba(0,0,0,0.8);
  border: 3px solid var(--gold);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.video-play-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 10px 50px rgba(212,175,55,0.6);
}
.video-play-btn::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 20px 0 20px 35px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 8px;
  transition: border-color 0.4s ease;
}
.video-play-btn:hover::before { border-color: transparent transparent transparent var(--black); }

#video1 .video-play-overlay { display: none !important; }

/* Video Lockscreen */
.video-lockscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 40px 20px;
}

.video-lockscreen-title {
  color: var(--gold);
  font-size: 1.8em;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 3px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--black);
  padding: 80px 40px;
}

.testimonial-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 2px 81px;
  overflow: hidden;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  width: calc((100% - 60px) / 3);
  flex-shrink: 0;
  background: var(--dark-gray);
  border: 1px solid var(--gold);
  padding: 40px 35px;
  position: relative;
  transition: box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--accent-red));
  transition: height 0.4s ease;
}
.testimonial-card:hover::before { height: 100%; }
.testimonial-card:hover { box-shadow: 0 10px 30px rgba(212,175,55,0.3); }

.testimonial-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.testimonial-category {
  color: var(--gold);
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-content { flex-grow: 1; margin-bottom: 25px; }

.testimonial-content p {
  color: var(--text-gray);
  font-size: 0.95em;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.author-name {
  color: var(--accent-red);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  font-style: italic;
}

.author-date {
  color: var(--text-muted);
  font-size: 0.85em;
  font-weight: 300;
}

.testimonial-prev, .testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212,175,55,0.1);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.5em;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-prev { left: 20px; }
.testimonial-next { right: 20px; }
.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--black);
  padding: 80px 20px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 700px;
  margin: 40px auto 0;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 15px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85em;
  letter-spacing: 1.2px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  justify-content: center;
  transition: all 0.4s ease;
}

.contact-link svg { width: 36px; height: 36px; transition: transform 0.4s ease; }

.contact-link::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}
.contact-link:hover::before { width: 100%; height: 100%; }
.contact-link:hover {
  color: var(--black);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
  transform: translateY(-5px);
}
.contact-link:hover svg { transform: scale(1.15); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: linear-gradient(180deg, var(--mid-gray) 0%, var(--black) 100%);
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: left;
}

.faq-item { border-bottom: 1px solid var(--light-gray); padding: 10px 0; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-gray);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  padding: 18px 40px 18px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3em;
  color: var(--gold);
  transition: color 0.3s ease;
}

.faq-item.open .faq-question { color: var(--gold); }
.faq-item.open .faq-question::after { content: '–'; color: var(--accent-red); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { font-size: 0.95em; color: var(--text-muted); margin-bottom: 18px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--dark-gray);
  text-align: center;
  padding: 40px 30px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

footer p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.8rem; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-container {
  max-width: 800px;
  margin: 80px auto 60px;
  padding: 0 30px 60px;
}
.legal-container::before,
.legal-container::after { display: none !important; }

.legal-container h1 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: left;
}

.legal-container h2 {
  font-size: 1.2em;
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 8px;
  color: #f5f5f5;
  letter-spacing: 0.04em;
  display: block;
}
.legal-container h2::before,
.legal-container h2::after { display: none !important; }

.legal-container p {
  margin-bottom: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95em;
  font-weight: 300;
}

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

.back-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.back-link:hover { color: var(--gold); border-color: var(--gold); }

/* =========================================================
   UTILITIES
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 40px; right: 40px;
  width: 50px; height: 50px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 24px;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

/* =========================================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  /* Nav → Burger */
  .burger-menu { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: auto;
  }

  .main-nav ul {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(100%);
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 100px 40px;
    transition: transform 0.4s ease;
    border-left: 1px solid var(--gold);
  }
  .main-nav ul.active { transform: translateX(0); }

  .main-nav ul li {
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
  }
  .main-nav ul li:last-child { border-bottom: none; }
  .main-nav ul li a { font-size: 1em; text-shadow: none; }

  /* Layout */
  section { padding: 60px 25px; }
  h2 { font-size: 2em; letter-spacing: 3px; }
  .section-subtitle { font-size: 0.9em; }
  p { font-size: 0.95em; }

  /* Age Modal */
  .age-modal-content { padding: 60px 30px; margin: 20px; }
  .age-modal-content h2 { font-size: 2em; letter-spacing: 3px; }
  .age-btn { padding: 16px 35px; font-size: 0.85em; margin: 5px; }

  /* Preferences */
  .pref-grid { grid-template-columns: 1fr; gap: 30px; }
  .pref-column { padding: 35px 25px; }

  /* Sessions */
  .session-list { grid-template-columns: 1fr; gap: 25px; }
  .session-item { padding: 35px 25px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Lightbox */
  .lightbox img { max-width: 90%; max-height: 70%; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-prev, .lightbox-next { font-size: 40px; padding: 10px; }
  .lightbox-close { top: 20px; right: 20px; font-size: 40px; }

  /* Videos */
  .videos { padding: 60px 20px; }
  .video-tab { padding: 12px 30px; font-size: 0.85em; }

  /* Testimonials */
  .testimonials { padding: 60px 20px; }
  .testimonial-slider-container { padding: 2px 60px; }
  .testimonial-card { width: calc((100% - 25px) / 2); padding: 30px 25px; min-height: auto; }
  .testimonial-track { gap: 25px; }

  /* Contact */
  .contact-links { grid-template-columns: repeat(2, 1fr); max-width: 450px; gap: 20px; }
  .contact-link { padding: 22px 12px; min-height: 110px; }
  .contact-link svg { width: 32px; height: 32px; }

  /* Footer */
  footer { padding: 40px 25px; }
  .back-to-top { display: none; }

  /* Legal */
  .legal-container { margin: 60px auto 40px; padding: 0 20px 40px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================================= */
@media (max-width: 768px) {
  /* Hero: Desktop verstecken, Mobile zeigen */
  .hero-image .hero-desktop { display: none; }
  .hero-image .hero-mobile  { display: block; }

  /* FAQ */
  .faq-question { font-size: 1.05em; letter-spacing: 1px; padding-right: 30px; }

  /* Termine */
  .updates-container { padding: 30px 20px; }
  .termin-ort { margin-bottom: 25px; }

  /* Videos */
  .video-tabs { gap: 10px; }
  .video-tab { padding: 10px 20px; font-size: 0.8em; }
  .video-play-btn { width: 70px; height: 70px; }
  .video-play-btn::before { border-width: 14px 0 14px 24px; margin-left: 5px; }
  .video-lockscreen { min-height: 250px; }
  .video-lockscreen-title { font-size: 1.1em; letter-spacing: 1px; }

  /* Testimonials */
  .testimonial-slider-container { padding: 2px 45px; }
  .testimonial-card { width: 100%; padding: 25px 20px; }
  .testimonial-prev { left: 5px; }
  .testimonial-next { right: 5px; }
  .testimonial-prev, .testimonial-next { width: 35px; height: 35px; font-size: 1em; }

  /* Contact */
  .contact-links { gap: 15px; max-width: 100%; }
  .contact-link { padding: 20px 10px; min-height: 100px; }
  .contact-link svg { width: 28px; height: 28px; }
  .contact-link span { font-size: 0.75em; letter-spacing: 1px; }

  /* Age Modal */
  .age-modal-content { padding: 50px 25px; }
  .age-modal-content h2 { font-size: 1.6em; }
}