/* ===========================
   TRUMP FOREVER — Memorial Site
   Color Palette: Black, White, Gold, Muted Red/Blue
   =========================== */

:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --white: #f5f5f0;
  --white-dim: #b0b0a8;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #8a6d2b;
  --red: #8b2232;
  --red-bright: #bf0a30;
  --blue: #1a2a4a;
  --blue-deep: #0d1b2a;
  --font-display: 'Cinzel', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ===========================
   Animations
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(201, 168, 76, 0.2); }
}

/* ===========================
   Navigation
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 600 !important;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 20px 24px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-mobile a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.nav-mobile.open {
  display: flex;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* Background: will be replaced with actual Trump photo */
  background: linear-gradient(180deg, var(--black) 0%, var(--blue-deep) 40%, var(--black) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--black) 75%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-particles .particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-flag {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red-bright), var(--white), var(--blue));
  margin: 0 auto 40px;
  opacity: 0.6;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
}

.hero-title-line.gold {
  color: var(--gold);
  font-style: italic;
}

.hero-dates {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  margin-bottom: 32px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-divider .star {
  color: var(--gold);
  font-size: 0.8rem;
}

.hero-divider .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  animation: pulseGold 3s ease infinite;
}

.hero-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.5;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollDown 2s ease infinite;
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
  padding: 100px 0;
  background: var(--black);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.quote-dark {
  background: var(--blue-deep);
}

.quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 16px;
}

.quote-mark {
  color: var(--gold);
  font-size: 1.5em;
}

.quote-cite {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

/* ===========================
   Legacy Timeline
   =========================== */
.legacy {
  padding: 120px 0;
  background: var(--black-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--white-dim);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -44px;
  top: 24px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--black-light), 0 0 0 5px var(--gold-dark);
}

.timeline-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 32px;
  border-radius: 4px;
  transition: border-color var(--transition), transform var(--transition);
}

.timeline-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(4px);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.timeline-card p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ===========================
   The Moment (Fight Section)
   =========================== */
.moment {
  position: relative;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
  /* Background: will be replaced with Fight Fight Fight photo */
  background: var(--black);
}

.moment-bg {
  position: absolute;
  inset: 0;
  /* Placeholder gradient — replace with background-image of the fist pump photo */
  background: radial-gradient(ellipse at center top, var(--red) 0%, var(--black) 60%);
  opacity: 0.3;
}

.moment-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--black) 80%);
}

.moment-content {
  position: relative;
  z-index: 1;
}

.moment-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 40px;
}

.moment-title span {
  display: block;
  color: var(--white);
  text-shadow: 0 0 60px rgba(191, 10, 48, 0.4);
  transition: transform 0.3s ease;
}

.moment-title span:nth-child(1) { opacity: 0.5; }
.moment-title span:nth-child(2) { opacity: 0.75; transform: scale(1.05); }
.moment-title span:nth-child(3) { opacity: 1; transform: scale(1.1); color: var(--white); }

.moment-text {
  font-size: 1.1rem;
  color: var(--white-dim);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.moment-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.moment-divider .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.moment-divider .star {
  color: var(--gold);
  font-size: 0.7rem;
}

.moment-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
}

/* ===========================
   Shop / Product Grid
   =========================== */
.shop {
  padding: 120px 0;
  background: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--black-card) 0%, #222 100%);
  color: var(--white-dim);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
}

.placeholder-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
}

/* When you have real product images, use:
   .product-image img { width:100%; height:100%; object-fit:cover; }
   and remove .product-placeholder */

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 2px;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.product-desc {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.product-btn {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 8px 20px;
  border-radius: 2px;
  transition: all var(--transition);
}

.product-btn:hover {
  background: var(--gold-light);
}

/* ===========================
   USA Banner
   =========================== */
.usa-banner {
  padding: 60px 0;
  background: var(--black-light);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.usa-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: left;
}

.usa-flag {
  font-size: 3rem;
  line-height: 1;
}

.usa-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.usa-text p {
  font-size: 0.9rem;
  color: var(--white-dim);
}

/* ===========================
   Email Signup
   =========================== */
.signup {
  padding: 100px 0;
  background: var(--black);
}

.signup-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.signup-inner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 12px;
}

.signup-inner > p {
  color: var(--white-dim);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.signup-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 16px;
}

.signup-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: var(--white);
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color var(--transition);
}

.signup-form input:focus {
  border-color: var(--gold);
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.signup-form button {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 2px 2px 0;
  transition: all var(--transition);
}

.signup-form button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.signup-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ===========================
   Footer
   =========================== */
.footer {
  padding: 60px 0 40px;
  background: var(--blue-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.footer-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.footer-legal p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.7rem !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-title-line {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .moment-title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .timeline {
    padding-left: 32px;
  }

  .timeline-marker {
    left: -36px;
  }

  .timeline-card {
    padding: 24px;
  }

  .signup-form {
    flex-direction: column;
    gap: 12px;
  }

  .signup-form input {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }

  .signup-form button {
    border-radius: 2px;
  }

  .usa-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .quote {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===========================
   Utility: Image Backgrounds
   When Joey has images ready, add these:

   .hero {
     background: url('../images/hero-trump-portrait.jpg') center center / cover no-repeat;
   }
   .moment-bg {
     background: url('../images/fight-fight-fight.jpg') center center / cover no-repeat;
     opacity: 0.25;
   }
   .product-placeholder can be replaced with:
   .product-image img { width:100%; height:100%; object-fit:cover; }
   =========================== */
