:root{
  --bg1:#3f5bff;
  --bg2:#8a4dff;
  --bg3:#ff6a8f;
  --text:#ffffff;
  --muted:rgba(255,255,255,0.75);
  --contentText:#1a1a1a;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.6;
  margin:0;
  min-height:100vh;
  background:linear-gradient(135deg,#3f5bff,#8a4dff 50%,#ff6a8f);
}

.top-nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  padding:16px 40px 10px 40px;
  display:flex;
  flex-direction:column;
  background:rgba(0,0,0,0.25);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index:1000;
  overflow:visible;
}

.top-nav::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:84px;
  pointer-events:none;
  background:linear-gradient(
    to bottom,
    rgba(18,18,38,0.34) 0%,
    rgba(18,18,38,0.20) 35%,
    rgba(18,18,38,0.08) 65%,
    rgba(18,18,38,0.00) 100%
  );
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.top-nav a{
  color:white;
  text-decoration:none;
  margin:0 18px 0 0;
  white-space:nowrap;
}

.content{
  max-width:900px;
  margin:160px auto 100px auto;
  padding:40px;
  color:white;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(20px);
  border-radius:28px;
}

.hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 40%),
    linear-gradient(135deg,var(--bg1),var(--bg2) 50%,var(--bg3));
  padding:40px 20px;
}

.hero-title{
  font-size:clamp(28px, 7vw, 52px);
  font-weight:600;
  line-height:1.08;
  margin-bottom:12px;
}

.hero-text{
  margin: 0 auto;

  font-size: 1.4rem;
  line-height: 1.45;

  text-align: center;
  letter-spacing: 0.01em;
}

html[lang="de"] .hero-text{
  max-width: 30ch;
}

html[lang="en"] .hero-text{
  max-width: 27ch;
}

html[lang="fr"] .hero-text{
  max-width: 32ch;
}

html[lang="es"] .hero-text{
  max-width: 34ch;
}

.hero-subline{
  margin: 18px auto 0 auto;   /* mehr Abstand nach oben */
  max-width: 20ch;

  font-size: 0.92rem;         /* etwas kleiner */
  line-height: 1.5;

  color: rgba(255,255,255,0.7);  /* deutlich subtiler */
  font-weight: 400;              /* kein Extra-Gewicht */

  text-align: center;
  text-wrap: balance;

  letter-spacing: 0.01em;
}

.hero img{
  width:220px;
  border-radius:48px;
  box-shadow:0 30px 80px rgba(0,0,0,0.35);
  margin-bottom:40px;
}

/* Warmer BNQ signature heading with emotional glow */
.content h2{
  font-size:clamp(24px, 5vw, 38px);
  margin-bottom:30px;
  font-weight:700;
  letter-spacing:0.6px;

  background:linear-gradient(90deg, #ffffff 0%, #fff2f7 45%, #ffdbe8 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  text-shadow:
      0 6px 24px rgba(255,140,170,0.18),
      0 2px 10px rgba(0,0,0,0.20);
}

.content p{
  margin-bottom:20px;
}

.footer{
  text-align:center;
  padding:40px;
  font-size:14px;
  color:#666;
}

.nav-lang{
  display:flex;
  justify-content:center;
  font-size:13px;
  margin-bottom:18px;
  opacity:0.75;
  letter-spacing:0.5px;
  gap:10px;
  flex-wrap:wrap;
}

.nav-lang a{
  text-decoration:none;
  font-weight:600;
  opacity:0.82;
  transition:opacity 0.2s ease, transform 0.2s ease;
}

.nav-lang a:hover{
  opacity:1;
  transform:translateY(-1px);
}

.nav-lang a.active-lang{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:4px;
}

.nav-menu{
  display:flex;
  justify-content:center;
  gap:28px;
  font-size:15px;
  padding-bottom:6px;
}

.nav-menu a.active{
  font-weight:600;
  color:#ffdbe8;
}

.nav-menu a{
  transition:all 0.25s ease;
}

.nav-menu a:hover{
  opacity:0.8;
}

.noa-section {
  max-width:980px;
  margin:0 auto;
  padding:24px 20px 12px;
  text-align:center;
  opacity:0;
  transform:translateY(22px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}

.noa-section.visible {
  opacity:1;
  transform:translateY(0);
}

.noa-kicker {
  margin:0 0 14px;
  font-size:clamp(18px, 3vw, 24px);
  font-weight:500;
  color:rgba(255,255,255,0.95);
}

.noa-subline{
  font-size:16px;
  line-height:1.55;
  max-width: 46ch;
  margin: 0 auto;                     /* zentriert */
  color: rgba(255,255,255,0.9);     /* ← WICHTIG */
  text-align: center;
  text-wrap: balance;
}

.noa-intro-line{
  margin-top: 18px;          /* Abstand nach oben (vom vorherigen Text) */
  margin-bottom: 24px;       /* Abstand zum Video → WICHTIG */

  font-size: 0.92rem;
  line-height: 1.5;

  color: rgba(255,255,255,0.75);  /* heller = ruhiger */
  font-weight: 400;

  text-align: center;
}

.noa-video-shell {
  position:relative;
  max-width:420px;
  margin:0 auto;
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,0.08);
  box-shadow:0 20px 60px rgba(0,0,0,0.18);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.noa-video {
  display:block;
  width:100%;
  height:auto;
  background:#000;
}

.noa-note {
  margin:14px auto 0;
  font-size:14px;
  line-height:1.5;
  color:rgba(255,255,255,0.68);
}

.noa-day-indicator {
  margin: 8px auto 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

.noa-sound-toggle {
  position:absolute;
  right:10px;
  bottom:10px;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(0,0,0,0.42);
  color:#fff;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity:0.92;
}

.noa-sound-toggle:hover {
  background:rgba(0,0,0,0.58);
  transform:scale(1.04);
}

.noa-sound-toggle:active {
  transform:scale(0.98);
}

.noa-sound-toggle:focus-visible {
  outline:2px solid rgba(255,255,255,0.75);
  outline-offset:2px;
}

.noa-sound-toggle svg{
  width:20px;
  height:20px;
  display:block;
}

.noa-sound-toggle .icon-stroke{
  stroke:#ffffff;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

.noa-sound-toggle .icon-danger{
  stroke:#ff5a5f;
  stroke-width:2.1;
  stroke-linecap:round;
}

html{
  scroll-behavior:smooth;
}

.intro-content{
  margin:0 auto;
}

/* ===== Landing Page / Language Selection ===== */

body.landing-page{
  display:flex;
  align-items:center;
  justify-content:center;
}

.landing-shell{
  width:100%;
  max-width:720px;
  margin:0 auto;
  padding:40px 24px;
  text-align:center;
}

.landing-logo{
  width:160px;
  margin:0 auto 40px auto;
  display:block;
  border-radius:36px;
  box-shadow:0 25px 70px rgba(0,0,0,0.35);
}

.landing-title{
  margin:0 0 14px 0;
  font-size:clamp(1.8rem, 3vw, 2.5rem);
  font-weight:700;
  line-height:1.15;
  color:#ffffff;
}

.landing-subtitle{
  margin:0 0 34px 0;
  font-size:1.05rem;
  line-height:1.5;
  color:rgba(255,255,255,0.92);
}

.landing-lang-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}

.landing-lang-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:16px 22px;
  border-radius:40px;
  background:#ffffff;
  color:#333333;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  transition:transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.landing-lang-link:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(0,0,0,0.22);
  opacity:1;
}

.landing-flag{
  font-size:1.25rem;
  line-height:1;
}

.landing-label{
  line-height:1.2;
}

@media (min-width: 900px) {
  body{
    scroll-snap-type:y proximity;
  }

  .hero,
  .intro-panel{
    scroll-snap-align:start;
  }

  .intro-panel{
    min-height:100svh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:28px;
    padding:120px 20px 80px;
  }

  .intro-panel .noa-section{
    padding-top:0;
    padding-bottom:0;
  }

  .intro-panel .content.intro-content{
    margin:0 auto;
  }
}


@media (min-width: 700px){
  .hero-subline{
    max-width: 30ch;
  }
}

@media (max-width: 640px) {
  .top-nav{
    padding:14px 18px 10px 18px;
  }

  .nav-menu{
    gap:18px;
    font-size:14px;
    flex-wrap:wrap;
  }

  .hero{
    padding:28px 16px;
  }

  .top-nav::after{
    height:64px;
  }
  .hero img{
    width:160px;
    border-radius:34px;
    margin-bottom:28px;
  }

  .hero-title {
    font-size:clamp(26px, 8vw, 36px);
    line-height:1.08;
  }

  .hero-text {
    font-size:17px;
    line-height:1.45;
    margin-bottom:28px;
    max-width:320px;
  }

  .content{
    margin:110px 16px 80px 16px;
    padding:26px 20px;
    border-radius:22px;
  }

  .noa-section {
    padding:18px 16px 6px;
  }

  .noa-kicker{
    font-size:clamp(18px, 5.3vw, 22px);
  }

  .noa-subline{
    font-size:16px;
    line-height:1.55;
    max-width:340px;
  }

  .noa-video-shell {
    max-width:320px;
    border-radius:18px;
  }

  .noa-note{
    max-width:320px;
    font-size:13px;
  }

  .noa-day-indicator{
    font-size:12px;
  }

  .noa-sound-toggle {
    width:38px;
    height:38px;
    right:8px;
    bottom:8px;
    font-size:16px;
  }

  .intro-panel{
    padding-bottom:0;
  }

  .intro-content{
    margin-top:16px;
  }

  .landing-shell{
    padding:32px 18px;
  }

  .landing-logo{
    width:132px;
    margin-bottom:28px;
  }

  .landing-lang-grid{
    grid-template-columns:1fr;
  }

  .landing-title{
    font-size:clamp(1.6rem, 7vw, 2rem);
  }

  .landing-subtitle{
    font-size:0.98rem;
    margin-bottom:28px;
  }
  
}
