/* ============================================================
   Omar Makes Music — Shared Stylesheet
   ============================================================ */

/* Google Fonts loaded via <link> in each HTML file:
   Bebas Neue (display headings) + Inter (body) */

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

:root {
  --bg:        #F5F1E8;
  --ink:       #0A0A0A;
  --ink-muted: #555550;
  --border:    #D8D3C8;
  --accent:    #0A0A0A;
  --font-display: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1100px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.65;
}

ul, ol {
  padding-left: 1.5em;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding: clamp(1.75rem, 5vw, 3.5rem) 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.nav-links a:hover {
  opacity: 0.5;
}

/* Hidden checkbox — CSS-only mobile nav toggle (no JavaScript required) */
.nav-toggle-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1;
  user-select: none;
}

/* Mobile nav */
@media (max-width: 640px) {
  .nav-toggle-label {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    z-index: 99;
  }
  .nav-links li a {
    display: block;
    padding: 0.75rem clamp(1.25rem, 5vw, 2.5rem);
  }
  /* Show links when checkbox is checked — pure CSS, zero JS */
  .nav-toggle-input:checked ~ .nav-links {
    display: flex;
  }
}

/* ── Typography ───────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400; /* Bebas Neue is inherently bold */
  line-height: 1.05;
  letter-spacing: 0.02em;
}

h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 65ch;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(1.75rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 11vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

.hero-ain {
  display: inline-block;
  vertical-align: 0.16em;
}

.nav-ain {
  display: inline-block;
  vertical-align: 0.16em;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-bio {
  max-width: 62ch;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

/* ── Show Brands ──────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.brand-card {
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  background: #EEEAD8;
}

.brand-card h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 0.6rem;
}

.brand-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Placeholder image slot */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

/* ── About Page ───────────────────────────────────────────── */
.bio-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 760px) {
  .bio-columns {
    grid-template-columns: 1fr;
  }
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.highlights-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.highlights-list li:first-child {
  border-top: 1px solid var(--border);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.press-card {
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.press-card .outlet {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}

.press-card blockquote {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

/* ── Music Page ───────────────────────────────────────────── */
.embed-block {
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  margin-bottom: 1.5rem;
  background: #EEEAD8;
}

.embed-block .embed-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

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

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.platform-link {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}

.platform-link:hover {
  background: var(--ink);
  color: var(--bg);
  opacity: 1;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-block {
  max-width: 600px;
}

.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0 2rem;
  border-bottom: 3px solid var(--ink);
  line-height: 1.2;
}

.contact-email:hover {
  opacity: 0.6;
}

.social-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 1.5rem;
}

.social-list a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}

.social-list li:first-child a {
  border-top: 1px solid var(--border);
}

.social-list a::after {
  content: "↗";
  margin-left: auto;
  font-size: 0.9rem;
}

.social-list a:hover {
  opacity: 0.5;
}

/* ── Privacy Page ─────────────────────────────────────────── */
.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.prose ul {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.prose li {
  margin-bottom: 0.4rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 1.25rem;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  grid-column: 1 / -1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.footer-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.footer-nav a:hover { opacity: 0.5; }

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.footer-socials a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-muted);
}

.footer-socials a:hover { opacity: 0.5; color: var(--ink); }

.footer-email {
  grid-column: 1 / -1;
}

.footer-email a {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}
