@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Oswald:wght@300;400&display=swap');

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

:root {
  --black:          #000000;
  --bg-card:        #0d0d0d;
  --bg-dark:        #191919;
  --purple:         rgb(149, 79, 203);
  --purple-dim:     rgba(149, 79, 203, 0.15);
  --teal:           rgb(74, 138, 147);
  --teal-dark:      rgb(60, 112, 120);
  --teal-bg:        rgba(74, 138, 147, 0.85);
  --white:          #ffffff;
  --text-body:      rgba(255, 255, 255, 0.92);
  --text-muted:     rgba(255, 255, 255, 0.65);
  --text-dim:       rgba(255, 255, 255, 0.40);
  --border-subtle:  rgba(255, 255, 255, 0.08);
  --border-mid:     rgba(255, 255, 255, 0.15);
}

html, body {
  min-height: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--white);
  background-color: var(--black);
  overflow-x: hidden;
  position: relative;
}

/* ── PAGE BACKGROUND ── */
.page-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  background-color: transparent;
}

/* Layer 1: background image at variable opacity */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('https://static.wixstatic.com/media/23043d_b6f0925552004eeaa819d6dd8cf41ec8~mv2.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100%;
  opacity: 1; /* overridden per-page via inline style */
}

/* Layer 2: dark overlay on top of the image */
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: rgba(73, 73, 73, 0.16);
  pointer-events: none;
}

.page-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 27px;
  height: 39px;
  margin-top: 22px;
  background: var(--black);
}

.nav-bar a {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s;
  white-space: nowrap;
  padding: 10px 10px;
  margin: 4px 0;
}

.nav-bar a:hover { color: var(--text-muted); }
.nav-bar a.active { color: var(--purple); }

.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 32px 1px;
  background: var(--black);
  border-bottom: 1px solid var(--border-subtle);
}

.logo-bar a {
  display: block;
  text-decoration: none;
}

.logo-bar img {
  height: 232px;
  width: 295px;
  object-fit: contain;
  display: block;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  min-height: 177px;
  position: relative;
}

.footer-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.footer-badge:first-child {
  left: 365px;
}

.footer-badge:last-child {
  right: 365px;
}

.footer-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-badge img {
  height: 151px;
  width: 155px;
  object-fit: contain;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-socials a img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.footer-copy {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.3px;
  color: var(--white);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  text-transform: none;
}

/* ── BUTTONS ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: var(--black);
  border: 2px solid var(--white);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline::before {
  content: '→';
  font-size: 15px;
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  background: var(--teal);
  border: 2px solid var(--teal);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* ── SHARED SECTION ELEMENTS ── */
.section-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--purple);
  text-align: center;
}

.section-subheading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  color: var(--text-body);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-title-block {
  padding: 64px 40px 40px;
  text-align: center;
}

.divider-line {
  width: 120px;
  height: 2px;
  background: var(--purple);
  margin: 0 auto;
  opacity: 0.55;
}

.main-content {
  flex: 1;
}

/* ── WIDGET CARD (My Music Staff embed container) ── */
.widget-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 8px;
  min-height: 500px;
}

/* ── LOADING STATE ── */
.loading-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* ── NAV HAMBURGER & MOBILE DROPDOWN ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  margin-left: auto;
}

.nav-mobile-dropdown {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
}

.nav-mobile-dropdown.open {
  display: flex;
}

.nav-mobile-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: block;
  transition: color 0.2s;
}

.nav-mobile-link:hover { color: var(--text-muted); }
.nav-mobile-link.active { color: var(--purple); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-bar a { display: none; }
  .nav-hamburger { display: block; }
  .nav-bar { flex-wrap: nowrap; gap: 0; padding: 0 16px; margin-top: 16px; }
  .logo-bar img { height: 100px; }
}

@media (max-width: 600px) {
  .nav-bar a { font-size: 13px; padding: 8px 6px; }
  .nav-bar { gap: 12px; margin-top: 10px; }
  .logo-bar img { height: 120px; width: auto; }
  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .footer-badge {
    position: static;
    transform: none;
    margin: 0 auto;
  }
  .page-title-block { padding: 48px 24px 32px; }
}
