/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e9ddff;
  min-height: 100vh;
  background: #050208;
}

/* Background gradient */
.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, #442289 0%, transparent 55%),
    radial-gradient(circle at 100% 0%, #b67cff 0%, transparent 55%),
    radial-gradient(circle at 50% 100%, #2b165e 0%, #050208 70%);
  z-index: -2;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 0.4em;
  color: #fdf7ff;
}

p {
  margin: 0 0 0.9em;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* HEADER & NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(7, 3, 19, 0.92), rgba(7, 3, 19, 0.5));
  border-bottom: 1px solid rgba(213, 193, 255, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #fdf7ff;
}

.logo-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #c9b4ff;
}

/* Navbar */
.navbar {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(40, 19, 93, 0.85), rgba(11, 5, 30, 0.96));
  box-shadow:
    0 0 12px rgba(170, 132, 255, 0.7),
    0 0 30px rgba(6, 1, 25, 0.9);
}

.nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #e6d7ff;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(221, 196, 255, 0.18);
}

.nav-link.active {
  background: radial-gradient(circle at top left, #e1c4ff, #a47aff);
  color: #160826;
}

/* Language switch */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: 0.4rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #c9b4ff;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.1rem 0.1rem;
}

.lang-btn.active-lang {
  color: #ffffff;
}

.lang-sep {
  opacity: 0.4;
  color: #d0c0ff;
}

/* HAMBURGER BUTTON (Basis, damit kein weißes Rechteck erscheint) */
.nav-toggle {
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
  width: 38px;
  height: 32px;
  display: none;                /* Desktop: versteckt, Mobile: wird überschrieben */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #eeeefc;
  border-radius: 2px;
  transition: 0.25s ease;
}

/* ----- MOBILE NAVBAR (nur unter 860px) ----- */
@media (max-width: 860px) {
  /* Hamburger anzeigen */
  .nav-toggle {
    display: flex;
  }

  /* Desktop-Pill nicht benutzen, stattdessen eigenes Panel */
  .nav-links {
    position: fixed;
    top: 60px;                 /* direkt unter dem Header */
    left: 10px;
    right: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.8rem 0.9rem 0.95rem;
    margin: 0;
    border-radius: 18px;
    list-style: none;
    background: radial-gradient(circle at top,
      rgba(38, 18, 99, 0.97),
      rgba(9, 3, 30, 0.98));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(214, 195, 255, 0.35);
    box-shadow:
      0 18px 40px rgba(4, 0, 25, 0.95),
      0 0 26px rgba(147, 114, 255, 0.8);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
  }

  /* Nur wenn geöffnet sichtbar */
  .navbar.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 0.6rem 0.45rem;
    border-radius: 10px;
  }

  .nav-link:hover {
    background: rgba(230, 210, 255, 0.12);
  }

  .nav-link.active {
    background: radial-gradient(circle at left,
      #e1c4ff,
      #a47aff);
    color: #160826;
  }

  .nav-lang {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(203, 184, 255, 0.35);
  }

  /* Hamburger-Icon Animation zum X */
  .navbar.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
  }
  .navbar.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
  }
}

/* HERO */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
}

.hero-small {
  padding: 3.2rem 0 2.4rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(226, 200, 255, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(167, 118, 255, 0.22), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.hero-inner-small {
  justify-content: flex-start;
}

.hero-text {
  max-width: 600px;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dcc3ff;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.1;
  text-shadow:
    0 0 14px rgba(240, 220, 255, 0.9),
    0 0 32px rgba(57, 32, 109, 0.9);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #e6ddff;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

/* Hero accent */
.hero-accent {
  position: relative;
  width: 260px;
  height: 260px;
  display: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #e8d3ff 0%, #9b72ff 40%, transparent 70%);
  opacity: 0.9;
  filter: blur(1px);
}

.hero-orbit,
.hero-orbit-2 {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(233, 214, 255, 0.5);
  box-shadow: 0 0 20px rgba(191, 155, 255, 0.7);
}

.hero-orbit-2 {
  inset: 0;
  opacity: 0.35;
}

@media (min-width: 980px) {
  .hero-accent {
    display: block;
  }
}

@media (max-width: 800px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* SECTIONS & CARDS */
.section {
  padding: 2.8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-header-left {
  text-align: left;
}

.section-tagline {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.95rem;
  color: #d4c6ff;
}

/* Cards */
.card {
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  background: radial-gradient(circle at top left,
      rgba(223, 203, 255, 0.22),
      rgba(17, 8, 44, 0.96));
  box-shadow:
    0 0 20px rgba(130, 91, 255, 0.8),
    0 0 50px rgba(5, 1, 20, 0.95);
  border: 1px solid rgba(247, 235, 255, 0.2);
}

.card-accent {
  border-color: rgba(255, 230, 191, 0.5);
  box-shadow:
    0 0 20px rgba(255, 216, 164, 0.75),
    0 0 50px rgba(23, 10, 54, 0.9);
}

/* Video card */
.video-card .video-wrapper {
  margin-top: 1rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(180, 129, 255, 0.95),
    0 0 40px rgba(11, 4, 38, 0.95);
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Concert card */
.card-concert {
  max-width: 720px;
  margin: 0 auto;
}

.concert-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffdfc4;
  margin-bottom: 0.4rem;
}

.concert-title {
  font-size: 1.2rem;
}

.concert-date {
  font-weight: 600;
  color: #f8e2ff;
}

/* Socials */
.card-social .social-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-social .social-list a {
  text-decoration: none;
  color: #f2e8ff;
  font-weight: 500;
}

.card-social .social-list a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 1.5rem;
}

.faq-item h3 {
  font-size: 1.05rem;
}

/* BUTTONS & FORMS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-primary {
  background: radial-gradient(circle at top left, #f0dcff, #b57aff);
  color: #14041f;
  box-shadow:
    0 0 16px rgba(220, 184, 255, 0.8),
    0 0 32px rgba(32, 12, 72, 0.95);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 22px rgba(233, 199, 255, 0.9),
    0 0 40px rgba(54, 21, 105, 0.95);
}

.btn-ghost {
  background: rgba(11, 6, 31, 0.8);
  color: #f2e8ff;
  border: 1px solid rgba(231, 214, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(231, 214, 255, 0.08);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.form-input {
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(225, 204, 255, 0.55);
  background: linear-gradient(120deg, rgba(12, 6, 33, 0.95), rgba(19, 8, 51, 0.96));
  color: #f6efff;
  font: inherit;
  outline: none;
  box-shadow: 0 0 12px rgba(115, 86, 214, 0.6);
}

.form-input:focus {
  border-color: #f5e5ff;
  box-shadow:
    0 0 18px rgba(216, 188, 255, 0.95),
    0 0 34px rgba(40, 14, 87, 0.95);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Placeholder */
::placeholder {
  color: #c6b1ff;
}

/* FOOTER */
.site-footer {
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid rgba(218, 199, 255, 0.22);
  background: radial-gradient(circle at top, rgba(33, 15, 74, 0.9), rgba(6, 2, 20, 0.98));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: left;
}

.footer-copy {
  font-size: 0.8rem;
  color: #cfbfff;
}

/* Links */
a {
  color: #f1e0ff;
}

a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero-subtitle {
    max-width: 100%;
  }

  .section {
    padding: 2.2rem 0;
  }

  .card {
    padding: 1.3rem 1.3rem;
  }
}

/* ——— ABOUT-PORTRAIT (Jiron) ——— */

.card-profile {
  background: transparent;       /* Card-Glow der Hauptkarte nicht doppeln */
  box-shadow: none;
  border: none;
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Rahmen + leichter 3D-Effekt */
.profile-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3 / 4;
  margin: 0 auto 0.8rem;
  border-radius: 22px;
  padding: 3px;                  /* dünner Rahmen */
  background: linear-gradient(135deg, #f2e6ff, #8c5dff);
  box-shadow:
    0 12px 30px rgba(7, 0, 35, 0.85);
}

/* eigentliche Foto-Fläche */
.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

/* dezenter Glow nach außen, nicht zu stark */
.profile-photo-wrap::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 26px;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(188, 143, 255, 0.4),
    transparent 70%);
  opacity: 0.75;
  mix-blend-mode: screen;
}

/* Beschriftung unter dem Bild */
.profile-caption {
  font-size: 0.85rem;
  color: #f1e6ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* auf sehr kleinen Screens Bild etwas kleiner halten */
@media (max-width: 480px) {
  .profile-photo-wrap {
    max-width: 200px;
  }
}