/* ============================================================
   MAJIK PATHIC RECORDS — SHARED BASE STYLESHEET
   Loaded on every page. Page-specific rules live in each
   page's own <style> block below this file.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;600;700&family=Barlow+Condensed:wght@300;400;600&display=swap');

:root {
  --black:    #060606;
  --deep:     #0a0a0a;
  --panel:    #0e0e0e;
  --panel2:   #131010;
  --border:   #201414;
  --border2:  #3a1c1c;
  --red:      #a30f0f;
  --red-hot:  #c81f1f;
  --red-glow: rgba(163,15,15,0.14);
  --white:    #d6d6d6;
  --silver:   #8a8a8a;
  --chrome:   #b3b3b3;
  --muted:    #55504f;
  --dimmed:   #302b2b;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 15px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--chrome); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-merch-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  letter-spacing: 0.18em !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-merch-btn:hover { background: var(--red-hot) !important; }
.nav-merch-btn::after { display: none !important; }

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

/* ─── PAGE HERO ──────────────────────────── */
.page-hero {
  padding: 68px 32px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.14em;
  color: var(--white);
}

.page-hero p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--silver);
  text-transform: uppercase;
  margin-top: 10px;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 18px auto 0;
}

/* ─── CONTAINERS ─────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 56px 0; }

/* ─── COMING SOON BLOCK ──────────────────── */
.coming-soon-block {
  text-align: center;
  padding: 64px 20px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.cs-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: var(--dimmed);
}

.cs-sub {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  color: var(--dimmed);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
footer a { color: var(--red); text-decoration: none; }
footer a:hover { color: var(--red-hot); }
footer .footer-logo {
  display: block;
  width: 40px;
  margin: 0 auto 16px;
  opacity: 0.5;
}

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }
.delay-1 { animation-delay: 0.08s; opacity: 0; }
.delay-2 { animation-delay: 0.16s; opacity: 0; }
.delay-3 { animation-delay: 0.24s; opacity: 0; }
.delay-4 { animation-delay: 0.32s; opacity: 0; }
.delay-5 { animation-delay: 0.4s; opacity: 0; }

/* ─── MOBILE ─────────────────────────────── */
@media (max-width: 700px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--deep); border-bottom: 1px solid var(--border); padding: 12px 0; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 0.8rem; }
  .nav-toggle { display: flex; }
  .container { padding: 0 18px; }
  .page-hero { padding: 44px 18px 32px; }
}
