/* =========================
   LEGEND SUPER RARE — STYLE 3
   Premium Black • White • Gold
   ========================= */

:root {
  --bg: #070b0f;
  --card-bg: #0c1216;
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --gold: #ffd85a;
  --accent: #111820;
  --radius: 16px;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: var(--accent);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 16px;
  padding: 10px 14px;
  border-radius: 10px;
}

.brand-title {
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #ffe47c;
}

/* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 80px 0 40px;
}

.hero-left {
  flex: 1;
  min-width: 320px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.title {
  font-family: 'Bangers', cursive;
  color: var(--gold);
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 22px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 12px rgba(255, 216, 90, 0.3);
}

.btn-primary:hover {
  background: #ffe480;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #000;
}

.hero-right img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 0 22px rgba(255, 216, 90, 0.08);
}

/* SECTION HEADERS */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 60px 0 25px;
}

.section-title {
  font-family: 'Bangers', cursive;
  color: var(--gold);
  font-size: 26px;
  letter-spacing: 0.5px;
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
}

/* PRODUCT GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 216, 90, 0.15);
}

.card img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.card h3 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-size: 15px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

/* MOVEMENT SECTION */
.movement-section {
  background: #fff7e0;
  color: #000;
  border-radius: var(--radius);
  padding: 50px 40px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.movement-section img {
  width: 260px;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

.movement-text {
  max-width: 480px;
}

.movement-text strong {
  color: #000;
}

/* JOIN SECTION */
.join-section {
  text-align: center;
  margin-top: 80px;
}

.join-section input {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--text);
  padding: 12px;
  width: 250px;
  margin: 6px;
  font-size: 14px;
}

.join-section input:focus {
  border-color: var(--gold);
  outline: none;
}

.join-section button {
  margin-top: 12px;
}

/* FOOTER */
footer {
  background: var(--accent);
  padding: 40px 0;
  margin-top: 80px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 16px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

/* MOBILE NAV */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

/* =========================
   RESPONSIVE MEDIA QUERIES
   ========================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero {
    gap: 30px;
    padding: 60px 0 30px;
  }

  .title {
    font-size: clamp(28px, 4vw, 42px);
  }

  .grid {
    gap: 20px;
  }

  .movement-section {
    padding: 40px 24px;
  }

  .movement-section img {
    width: 220px;
  }
}

/* Large Phones */
@media (max-width: 820px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--accent);
    position: absolute;
    top: 70px;
    right: 20px;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-right img {
    max-width: 80%;
  }

  .movement-section {
    flex-direction: column;
    text-align: center;
  }

  .movement-section img {
    width: 200px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .title {
    font-size: 28px;
  }

  .lead {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .movement-section {
    padding: 30px 20px;
  }

  .join-section input {
    width: 100%;
  }

  .footer-links a {
    margin-left: 10px;
    display: inline-block;
  }
}
