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

/* =======================================
   Base
   ======================================= */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  background: radial-gradient(circle at top, #2B0F42 0, #050208 55%, #000 100%);
  color: #FDF5FF;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

/* =======================================
   Header & Navigation
   ======================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0 10px 0;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.35);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand als Link klickbar */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle, #FF8A00, #8C1EFF);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .96rem;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  font-size: .9rem;
  color: #C9AEDA;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color 0.16s ease, border-bottom-color 0.16s ease, opacity 0.16s ease;
}

.nav a:hover {
  color: #FFFFFF;
  border-bottom-color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.nav a.active {
  color: #FFFFFF;
  border-bottom-color: #FF8A00;
}

/* =======================================
   Hero
   ======================================= */
.hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
}

/* Hero mit Foto-Background */
.hero--photo {
  background-image:
    linear-gradient(115deg, rgba(5, 2, 8, 0.85), rgba(5, 2, 8, 0.35)),
    url('/assets/img/spiritsex.png');
  background-size: 140% auto;
  background-position: 35% 30%; /* 1. Wert: links/rechts, 2. Wert: hoch/runter */
  background-repeat: no-repeat;
  color: #FDF5FF;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left,
    rgba(255, 138, 0, 0.35),
    transparent 55%);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 1;
  min-height: 380px;
}

.hero-copy {
  max-width: 520px;
}

/* Badge mit Logo im Textbereich (optional) */
.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(5, 2, 8, 0.72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(253, 245, 255, 0.12);
}

.hero-logo-badge img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
}

.hero-logo-badge span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.95;
}

.hero-age-note {
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-heading {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.hero-heading .gradient {
  background: linear-gradient(135deg, #2B0F42, #8C1EFF, #FF006E, #FF8A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin: 0 0 22px 0;
  font-size: 1rem;
  max-width: 460px;
  opacity: 0.95;
  color: #C9AEDA;
}

.hero-actions {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2B0F42, #8C1EFF, #FF006E, #FF8A00);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #C9AEDA;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

/* Kleine Info-Card (falls genutzt) */
.hero-card {
  border-radius: 22px;
  padding: 18px 18px 20px;
  background: linear-gradient(150deg, rgba(24, 11, 32, 0.96), rgba(5, 2, 12, 0.99));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(140, 30, 255, 0.32);
}

/* Fotokarte rechts – leicht schwebend */
.hero-photo-card {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(5, 2, 8, 0.55);
  padding: 6px;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(253, 245, 255, 0.06);
  max-width: 430px;
  flex: 1 1 340px;
}

.hero-photo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* Logo direkt, ohne Kreis / Badge – einfach groß oben rechts */
.hero-photo-logo {
  position: absolute;
  top: 8px;        /* bei Bedarf anpassen */
  right: 8px;      /* bei Bedarf anpassen */
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-photo-logo img {
  width: 80px;     /* VIEEEEL größer – hier kannst du mit 70–100px spielen */
  height: auto;
  display: block;
  border-radius: 0; /* kein zusätzlicher Kreis */
}

/* Mobile: Bild unter dem Text stapeln */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-photo-card {
    width: 100%;
    max-width: none;
  }
}

/* =======================================
   Sub-Hero / Legal Pages (Impressum, Datenschutz, AGB)
   ======================================= */
.sub-hero {
  margin-bottom: 24px;
}

.sub-hero h1 {
  margin: 0 0 8px 0;
  font-size: 1.6rem;
}

.sub-hero-subtitle {
  margin: 0;
  font-size: .96rem;
  color: #C9AEDA;
  max-width: 720px;
}

/* Allgemeine Typografie für Content */
main h1,
main h2,
main h3 {
  font-weight: 600;
}

main h2 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

main h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1rem;
}

main p {
  margin: 0 0 12px 0;
  line-height: 1.5;
  font-size: .95rem;
}

main ul {
  margin: 0 0 12px 0;
  padding-left: 20px;
  font-size: .95rem;
}

main li {
  margin-bottom: 4px;
}

/* Links im Content */
main a {
  color: #FF8A00;
  text-decoration: none;
}

main a:hover {
  text-decoration: underline;
}

/* =======================================
   Footer
   ======================================= */
.footer {
  margin-top: auto;
  padding: 20px 0 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: #C9AEDA;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #C9AEDA;
  text-decoration: none;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* =======================================
   Kleine Responsive-Anpassungen
   ======================================= */
@media (max-width: 640px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}