:root {
  --bg: #0b0d11;
  --surface: rgba(18, 23, 31, 0.74);
  --surface-strong: rgba(14, 18, 25, 0.9);
  --text: #e9eef5;
  --text-dim: #b8c6d8;
  --line: rgba(103, 148, 199, 0.34);
  --accent: #7db2ea;
  --radius: 4px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: #0b0d11 url("../images/background_bluedisco_retouched.jpg") center 56% / cover no-repeat fixed;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(8, 11, 16, 0.48), rgba(8, 11, 16, 0.7));
  pointer-events: none;
  z-index: 0;
}

header,
section,
footer {
  position: relative;
  z-index: 1;
}

.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  max-width: calc(100vw - 300px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 15, 21, 0.72);
  backdrop-filter: blur(10px);
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.site-nav a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(125, 178, 234, 0.1);
}

.lang-switch {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 20;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 15, 21, 0.72);
  backdrop-filter: blur(10px);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-link:hover {
  color: var(--accent);
}

.lang-link.is-active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(125, 178, 234, 0.12);
}

section {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 34px 0;
}

section[id] {
  scroll-margin-top: 88px;
}

.hero {
  min-height: 84vh;
  display: grid;
  place-items: center;
  padding-top: 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 28%, rgba(125, 178, 234, 0.16), rgba(8, 11, 16, 0.44) 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 92vw);
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.hero-logo {
  width: min(72vw, 520px);
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.46));
}

.hero-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 4.4vw, 3.3rem);
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero-subtitle {
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.hero-text {
  color: var(--text-dim);
  max-width: 720px;
  font-size: 0.96rem;
}

.hero-content .btn-primary {
  margin-top: 10px;
}

.section-title {
  margin-bottom: 12px;
  text-align: center;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-dim);
}

.stack,
.cards {
  display: grid;
  gap: 12px;
}

.stack {
  grid-template-columns: 1.25fr 1fr;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
}

.panel h3,
.card h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.panel p,
.card p {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.inline-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(21, 27, 36, 0.9);
  padding: 10px 22px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 178, 234, 0.72);
}

.btn-primary {
  background: rgba(20, 37, 56, 0.92);
  box-shadow: 0 10px 30px rgba(125, 178, 234, 0.16);
}

.booking .btn-primary {
  margin-top: 12px;
}

.booking-action {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.contact .panel {
  max-width: 680px;
  margin: 0 auto;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

.mixcloud-embed {
  display: block;
  width: 100%;
  min-height: 120px;
  height: 120px;
  border: 0;
}

.social-feed {
  width: min(1180px, 96vw);
  margin: 0 auto;
  padding: 16px 0 28px;
}

.social-feed .elfsight-app-a4f10940-0ce6-4271-8e5c-b3586bfc0e1e {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.footer {
  margin-top: 34px;
  padding: 24px 20px 30px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 12, 17, 0.22), rgba(9, 12, 17, 0.92));
}

.footer-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-row a {
  color: var(--text-dim);
  text-decoration: none;
}

.footer-row a:hover {
  color: var(--accent);
}

.copyright {
  margin-top: 10px;
  color: rgba(245, 242, 236, 0.56);
  font-size: 0.84rem;
}

.legal-page {
  min-height: 100vh;
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 32px 0 40px;
  position: relative;
  z-index: 1;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.legal-back:hover {
  border-color: var(--accent);
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: 22px;
}

.legal-card h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-bottom: 14px;
}

.legal-card h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  color: var(--accent);
  margin: 18px 0 8px;
}

.legal-card p {
  color: var(--text-dim);
  margin: 6px 0;
}

.legal-card a {
  color: var(--accent);
}

.reveal,
.reveal-img {
  opacity: 0;
  transform: translateY(38px) scale(0.988);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 960px) {
  .stack,
  .cards,
  .cards.two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-nav {
    top: 56px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: min(96vw, 620px);
    width: calc(100vw - 20px);
    justify-content: center;
  }

  .lang-switch {
    top: 10px;
    right: 10px;
  }

  .lang-link {
    min-width: 36px;
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  section {
    text-align: center;
  }

  body {
    background-attachment: scroll;
    background-position: center 58%;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-logo {
    width: min(88vw, 420px);
  }

  .btn {
    width: min(100%, 320px);
  }

  .panel,
  .card,
  .panel h3,
  .card h3,
  .panel p,
  .card p,
  .kicker {
    text-align: center;
  }

  .mixcloud-embed {
    min-height: 120px;
    height: 120px;
  }

  .music .inline-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .music .inline-actions .btn {
    width: min(100%, 280px);
  }

  .social-feed {
    width: min(100%, 92vw);
    padding: 12px 0 22px;
  }

  .legal-page {
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-img,
  .btn {
    transition: none;
    transform: none;
  }

  .hero-content {
    transform: none;
  }
}
