/* ============================================================
   marquitab.com — shared stylesheet
   ============================================================ */

:root {
  --color-bg: #000;
  --color-text: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.72);
  --font-display: 'MidnightRider', Georgia, serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

@font-face {
  font-family: 'MidnightRider';
  src: url('MidnightRider-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  height: 100%;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

body.home {
  overflow: hidden;
  height: 100dvh;
}

/* ============================================================
   Video background (index only)
   ============================================================ */

.video-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

/* ============================================================
   Main content wrapper
   ============================================================ */

.site-main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2rem 1.5rem;
  text-align: center;
  animation: fade-in 1.4s ease-out;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Index — tagline & body text
   ============================================================ */

.tagline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.95), 0 0 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.4rem;
  max-width: 16ch;
}

.tagline-copy {
  font-size: 0.35em;
  vertical-align: middle;
  opacity: 0.7;
}

.body-text {
  font-size: clamp(0.82rem, 2.6vw, 0.95rem);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.95);
  max-width: 34ch;
  margin-bottom: 2.8rem;
}

.body-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.body-text a:hover {
  color: #fff;
}

/* ============================================================
   Navigation links
   ============================================================ */

.site-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  letter-spacing: 0;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.25s, opacity 0.25s;
  min-width: 44px;
  display: inline-block;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
}

.site-nav a:hover {
  border-color: #fff;
  opacity: 0.85;
}

/* ============================================================
   Artist name — fixed bottom signature
   ============================================================ */

.artist-name {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  color: var(--color-text);
  opacity: 0.6;
  pointer-events: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   Music page
   ============================================================ */

.music-page .site-main {
  justify-content: flex-start;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  gap: 0;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.video-embed {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  margin-bottom: 2.5rem;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.streaming-links a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  transition: border-color 0.25s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.streaming-links a:hover {
  border-color: #fff;
}

.back-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity 0.2s;
  padding: 0.5rem 0;
}

.back-link:hover {
  opacity: 1;
}
