/* ============================================
   FUSED MUSIC STUDIO — Shared Styles
   fusedmusic.studio
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- Variables ---- */
:root {
  --ink:        #0a0a0f;
  --cream:      #f5f0e8;
  --teal:       #1a6b6b;
  --teal-mid:   #1f8080;
  --teal-light: #2eadad;
  --gold:       #b8823a;
  --muted:      #4a4a58;
  --white:      #ffffff;
  --card-bg:    #ffffff;
  --border:     rgba(10,10,15,0.1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { color: inherit; }

/* ---- Accessibility ---- */
.skip-nav {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-nav:focus { top: 16px; }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.nav-logo span { color: var(--teal-light); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--teal-light);
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  border-bottom: none !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-mid) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.btn-primary   { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); }
.btn-dark      { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #1e1e2a; transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); }

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.section-label.dark { color: var(--teal-light); }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  padding: 60px 60px 40px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 22px; margin-bottom: 16px; display: block; }
.footer-brand p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.6); max-width: 280px;
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 500; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 14px; font-weight: 300; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--teal-light); text-decoration: none; }

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .site-nav { padding: 18px 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed;
    top: 62px; left: 0; right: 0; background: var(--ink);
    padding: 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
