/* =========================================================
   COLOR SCHEME / VARIABLES
   ========================================================= */
:root {
  --primary-100: #0038a8;
  --primary-200: #0049db;
  --primary-300: #0f5fff;

  --accent-100: #b0b0b0;

  --background-100: #000c25;
  --background-200: #00143f;
  --background-300: #001d58;

  --text-100: #fdfdfe;
  --text-200: #ececf5;

  --card: rgba(0, 20, 63, 0.65);
  --stroke: rgba(15, 95, 255, 0.35);

  --radius: 16px;
}

/* =========================================================
   BASE HARDENING (prevents dimension blowouts)
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background-100);
  color: var(--text-100);
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

img, video, canvas, svg, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

/* Pico adds its own typography; we’re aligning headings to your aesthetic */
h1, h2, h3, h4 {
  font-family: "Smooch Sans", sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

h2 { color: var(--primary-300); }
p { color: var(--text-200); }

a { color: var(--primary-300); text-decoration: none; }
a:hover { color: var(--primary-200); text-decoration: underline; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 20, 63, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 95, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.site-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.35rem 0.2rem;
}

.nav-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-image {
  background-image: url("attached_assets/2024.03.05_LittleStreetStudio_MARCH24_Photo-23814_FINALEdit_LR_1765956955084.jpg");
  background-size: cover;
  background-position: center;
  min-height: 380px;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 12, 37, 0.25),
    rgba(0, 12, 37, 0.85)
  );
  min-height: 380px;
  display: flex;
  align-items: center;
}

.hero-inner {
  padding: 2.2rem 0;
}

.hero-overlay h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 0.6rem 0;
  line-height: 1.05;
}

.hero-sub {
  margin: 0;
  max-width: 760px;
  color: rgba(253,253,254,0.92);
  font-size: 1.05rem;
}

/* =========================================================
   PANELS / SECTIONS
   ========================================================= */
.panel {
  padding: clamp(22px, 3vw, 40px);
  margin: 2.2rem 0;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.muted { color: rgba(236,236,245,0.92); }
.note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(236,236,245,0.85);
}

/* =========================================================
   PRESENTATION EMBED
   ========================================================= */
.presentation-frame {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 95, 255, 0.35);
  background: rgba(0,0,0,0.25);
}

.presentation-frame iframe {
  width: 100%;
  height: min(70vh, 680px);
  border: 0;
}

/* =========================================================
   AUDIO (WAVESURFER) UI
   ========================================================= */
.audio-card {
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 14px;
  background: rgba(0, 12, 37, 0.65);
  border: 1px solid rgba(15, 95, 255, 0.30);
}

.audio-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.audio-title {
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.6px;
}

.audio-sub {
  color: rgba(236,236,245,0.88);
  font-size: 0.95rem;
}

.audio-track-switch {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

#waveform {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.audio-controls {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.control-group label {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(236,236,245,0.9);
}

.control-group select,
.control-group input[type="range"] {
  margin: 0;
}

.grow { flex: 1 1 260px; }

.eq {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.eq-item {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.eq-item label {
  margin: 0;
  min-width: 46px;
  font-size: 0.9rem;
  color: rgba(236,236,245,0.9);
}

.audio-status {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(236,236,245,0.88);
  font-size: 0.95rem;
}

/* Buttons (site style) */
button {
  background: var(--primary-300);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: var(--primary-200);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
}

/* =========================================================
   CALLOUT
   ========================================================= */
.callout {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(15, 95, 255, 0.12);
  border: 1px solid rgba(15, 95, 255, 0.30);
  color: rgba(253,253,254,0.95);
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form {
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 12px;
}

.contact-form textarea {
  min-height: 140px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  margin: 3.5rem auto 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}

.footer-disclaimer {
  max-width: 960px;
  margin: 0 auto 1.2rem;
  color: rgba(236,236,245,0.9);
}

.footer small a {
  color: rgba(236,236,245,0.9);
}

.footer small a:hover {
  color: #ffffff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 720px) {
  .nav-wrapper { padding: 0.8rem 0; }
  .presentation-frame iframe { height: 60vh; }
  #waveform { height: 160px; }
}
