/* ===== MCLEVI.COM — FTM RECORDS ===== */
:root {
  --black: #050505;
  --deep: #0c0c0c;
  --card: #141414;
  --border: #232323;
  --red: #d61e1e;
  --red-bright: #ff2a2a;
  --white: #f4f4f4;
  --grey: #8a8a8a;
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --mono: 'Space Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 50px;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.scrolled { border-bottom-color: var(--border); background: rgba(5,5,5,0.97); }
.nav-logo {
  font-family: var(--display);
  font-size: 30px; letter-spacing: 5px; color: var(--white);
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey); transition: color 0.3s;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--red); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); background: var(--red);
  padding: 10px 20px; transition: background 0.3s;
}
.nav-cta:hover { background: var(--red-bright); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.burger span { width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }

/* BUTTONS */
.btn {
  display: inline-block; font-family: var(--mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 34px;
  transition: all 0.3s; cursor: pointer; border: 1px solid transparent;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--grey); border-color: var(--border); }
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* SECTIONS */
section { padding: 110px 50px; position: relative; }
.section-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 4px;
  color: var(--red); text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 36px; height: 1px; background: var(--red); }
.section-title {
  font-family: var(--display); font-size: clamp(48px, 7vw, 92px);
  line-height: 1; letter-spacing: 2px; margin-bottom: 50px; color: var(--white);
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0 50px; }

/* PAGE HERO (inner pages) */
.page-hero {
  min-height: 44vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 50px 50px;
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 30%, rgba(214,30,30,0.07) 0%, transparent 55%);
}
.page-hero .section-label { margin-top: 120px; }
.page-hero h1 {
  font-family: var(--display); font-size: clamp(60px, 11vw, 150px);
  line-height: 0.9; letter-spacing: 3px; color: var(--white); position: relative;
}
.page-hero p { color: var(--grey); margin-top: 12px; font-size: 14px; letter-spacing: 1px; }
.hero-avatar {
  position: absolute; top: 40px; right: 50px;
  width: 130px; height: 130px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--red); z-index: 2;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) {
  .hero-avatar { width: 84px; height: 84px; top: 24px; right: 22px; }
}

/* FOOTER */
footer { background: var(--deep); border-top: 1px solid var(--border); padding: 60px 50px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { font-family: var(--display); font-size: 40px; letter-spacing: 5px; margin-bottom: 14px; }
.footer-logo span { color: var(--red); }
.footer-tagline { color: var(--grey); font-size: 13px; line-height: 1.8; max-width: 240px; }
.footer-social { display: flex; gap: 18px; margin-top: 22px; }
.footer-social a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey);
  border-bottom: 1px solid transparent; padding-bottom: 2px; transition: all 0.3s;
}
.footer-social a:hover { color: var(--red); border-bottom-color: var(--red); }
.footer-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px; color: var(--red);
  text-transform: uppercase; margin-bottom: 18px; font-weight: 400;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 13px; color: var(--grey); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 10px; letter-spacing: 2px; color: var(--grey); text-transform: uppercase;
}
.footer-bottom .ftm { color: var(--red); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* MOBILE */
@media (max-width: 860px) {
  nav { padding: 16px 22px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 70%;
    background: var(--deep); flex-direction: column; justify-content: center;
    align-items: center; gap: 30px; transition: right 0.4s ease; border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 15px; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  section { padding: 70px 22px; }
  .divider { margin: 0 22px; }
  .page-hero { padding: 0 22px 40px; }
  .page-hero .section-label { margin-top: 100px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Fix reveal - visible by default, animated when JS kicks in */
.reveal {
  opacity: 1;
  transform: none;
}

/* Footer mobile fix */
@media (max-width: 860px) {
  footer { padding: 50px 22px 30px; overflow-x: hidden; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    width: 100%;
    max-width: 100%;
  }
  .footer-col { width: 100%; min-width: 0; overflow: hidden; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
  .footer-col h4 { font-size: 10px; letter-spacing: 2px; }
  .footer-col ul li a { font-size: 12px; }
  .footer-logo { font-size: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 9px; }
}
