/* ============================================================
   DER HYPNOTISEUR – Conversion-optimierte Website
   ============================================================ */

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

:root {
  --red:    #e30613;
  --red-dk: #b5000f;
  --black:  #000000;
  --dark:   #0a0a0a;
  --dark2:  #111111;
  --dark3:  #161616;
  --white:  #ffffff;
  --grey:   #c0c0c0;
  --grey2:  #9ca3af;
  --font:   'Roboto', sans-serif;
  --max:    1200px;
  --nav-h:  90px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================ UTILS */
.text-center { text-align: center; }
.red { color: var(--red); }
.lead { font-size: 18px; color: var(--grey); line-height: 1.75; margin-bottom: 20px; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

p {
  color: var(--grey);
  margin-bottom: 16px;
}

strong { color: var(--white); }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 32px;
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 38px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,6,19,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-large { padding: 18px 52px; font-size: 15px; }
.btn-submit { width: 100%; font-size: 15px; padding: 18px; margin-top: 8px; }

/* ============================================================ TOUR TICKET */
.tour-ticket-link {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 800;
  display: block;
  transition: transform 0.2s;
}
.tour-ticket-link:hover { transform: scale(1.06); }
.tour-ticket-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.7));
}

/* ============================================================ NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo { height: 64px; width: auto; }

/* ============================================================ HERO */
#hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 32px 60px;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-text-col { display: flex; flex-direction: column; align-items: flex-start; }

#hero h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-video-col { display: flex; flex-direction: column; gap: 10px; }
.hero-video-col .section-label { margin-bottom: 4px; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* YouTube Facade – lädt iframe erst bei Klick */
.yt-facade { cursor: pointer; }
.yt-facade img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.yt-facade:hover img { opacity: 1; }
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.7));
  transition: transform 0.2s;
  z-index: 2;
}
.yt-facade:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.12); }

/* ============================================================ STATS */
#stats {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 32px;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey2);
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================================ WARUM (PIVOT) */
#warum {
  background: var(--dark3);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#warum .section-inner {
  max-width: 900px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 40px 0;
  text-align: left;
}

.compare-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
}

.compare-other {
  background: var(--dark2);
  border-color: rgba(255,255,255,0.08);
}

.compare-other h3 { color: var(--grey); font-size: 16px; margin-bottom: 16px; }

.compare-us {
  background: rgba(227,6,19,0.07);
  border-color: var(--red);
}

.compare-us h3 { color: var(--red); font-size: 16px; margin-bottom: 16px; }

.compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-other ul li {
  font-size: 14px;
  color: var(--grey2);
  padding-left: 18px;
  position: relative;
}
.compare-other ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--grey2);
}

.compare-us ul li {
  font-size: 14px;
  color: var(--grey);
  padding-left: 22px;
  position: relative;
}
.compare-us ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.compare-vs {
  font-size: 22px;
  font-weight: 900;
  color: var(--grey2);
  text-align: center;
  padding: 0 8px;
}

.compare-closing {
  font-size: 17px;
  color: var(--grey);
  margin-bottom: 32px;
}

/* ============================================================ EVENTS */
#events {
  background: var(--black);
  padding: 90px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.events-header {
  max-width: var(--max);
  margin: 0 auto 48px;
}

.events-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.event-card {
  background: var(--dark2);
  padding: 36px 28px;
  border-top: 3px solid var(--red);
  display: flex;
  flex-direction: column;
}

.event-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.event-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}

.event-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}

.event-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}
.event-cta:hover { color: var(--white); }

/* ============================================================ GALLERY */
#gallery {
  background: var(--dark3);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.gallery-header {
  padding: 0 32px;
  margin-bottom: 40px;
}

.carousel { position: relative; }
.carousel-track-wrapper { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease; }

.carousel-slide { min-width: calc(100% / 3); padding: 4px; flex-shrink: 0; }
.carousel-slide img { width: 100%; height: auto; display: block; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 18px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.carousel-btn:hover { background: var(--red); border-color: var(--red); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 12px;
}
.dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dot::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: block;
  transition: background 0.2s;
}
.dot.active::after { background: var(--red); }
.dot.active { background: var(--red); }

.section-cta { text-align: center; padding: 40px 32px 64px; }

/* ============================================================ ABLAUF */
#ablauf {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 48px 0;
  text-align: left;
}

.step { display: flex; flex-direction: column; }

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(227,6,19,0.25);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--grey); line-height: 1.7; margin: 0; }

/* ============================================================ WAS IST */
#was-ist {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 90px 32px;
}

.was-ist-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.was-ist-text h2 { font-size: 28px; margin-bottom: 20px; }
.was-ist-text p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 14px; }
.was-ist-text .btn { margin-top: 12px; }

.was-ist-image img {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================ FAQ */
#faq {
  background: var(--dark3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.accordion { border-top: 1px solid rgba(255,255,255,0.08); }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.08); }

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--red); }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); color: var(--red); }

.accordion-icon {
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s, color 0.2s;
  color: var(--grey2);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-content.open { max-height: 600px; padding-bottom: 24px; }
.accordion-content p { font-size: 15px; color: var(--grey); line-height: 1.75; margin: 0; }
.accordion-content a { color: var(--red); text-decoration: underline; }

/* ============================================================ ABOUT */
#about {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 90px 32px;
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.about-image img { width: 100%; }

.about-text h2 { font-size: 32px; margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 12px; }
.about-text .btn { margin-top: 16px; }

.about-subtitle {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red) !important;
  margin-bottom: 8px !important;
  margin-top: 20px;
}

/* ============================================================ CTA SECTION */
#cta-section {
  background: var(--black);
  border-top: 3px solid var(--red);
}

#cta-section h2 { font-size: 34px; margin-bottom: 16px; }

.cta-contact {
  margin: 32px 0;
}
.cta-contact p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey2);
  margin-bottom: 6px;
}
.contact-email {
  font-size: 20px;
  color: var(--white);
  display: inline-block;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--red); }

/* ============================================================ FORMULAR */
#formular {
  background: var(--dark3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

#formular h2 { font-size: 30px; margin-bottom: 8px; }

.form-subtext {
  font-size: 15px;
  color: var(--grey2);
  margin-bottom: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.04);
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #111; }

.form-privacy {
  font-size: 12px;
  color: var(--grey2);
  text-align: center;
  margin: 0;
}

.form-success {
  background: rgba(22,101,22,0.3);
  border: 1px solid #2d7d2d;
  color: #86efac;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
}
.form-error {
  background: rgba(127,29,29,0.3);
  border: 1px solid #7f1d1d;
  color: #fca5a5;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
}

/* ============================================================ FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 32px;
  text-align: center;
}

.footer-inner { max-width: var(--max); margin: 0 auto; }

.footer-logo { height: 54px; width: auto; margin: 0 auto 28px; }

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}
.social-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--red); }

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin: 0;
}

/* ============================================================ BACK TO TOP */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--red-dk); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  h2 { font-size: 28px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 76px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text-col { align-items: center; text-align: center; }
  #hero h1 { font-size: 32px; }
  .hero-text { max-width: 100%; }
  #hero { padding: calc(var(--nav-h) + 32px) 24px 50px; }

  .was-ist-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { max-width: 280px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .carousel-slide { min-width: 100%; }

  .stats-inner { flex-wrap: wrap; gap: 32px 0; padding: 36px 0; }
  .stat { padding: 0 28px; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .section-inner { padding: 60px 20px; }
  #events, #was-ist, #about { padding: 60px 20px; }
  h2 { font-size: 24px; }
  #hero h1 { font-size: 26px; }
  .events-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { text-align: center; }
  .stat-number { font-size: 32px; }
}
