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

html,
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--Color3);
  color: var(--Text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Hero Section */
#hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/static/images/hero-bg.jpg');
  /* Fallback or placeholder */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  margin-bottom: 5vh;
}

.hero-overlay {
  text-align: center;
  background: rgba(15, 15, 18, 0.85);
  /* Matches --Color2 with opacity */
  padding: 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 800px;
  margin: 0 20px;
}

.hero-overlay h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  color: var(--Text);
  text-transform: uppercase;
  line-height: 1;
}

.hero-overlay p {
  font-size: 1.2rem;
  color: var(--Accent);
  font-weight: 300;
}

/* Content Sections */
.content {
  padding: 6rem 10vw;
  text-align: center;
  position: relative;
}

.content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--Color1);
  /* Brand Red */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.content p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--Text);
  font-weight: 300;
}

/* Section Variants */
.light {
  background-color: var(--Color2);
}

.dark {
  background-color: var(--Color3);
}

.highlight {
  background: linear-gradient(135deg, var(--Color1), #5a0b0d);
  color: white;
}

.highlight h2 {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 500;
}

/* Specific Adjustments for Readability */
.content.dark p {
  color: rgba(242, 242, 242, 0.8);
  /* --Text with opacity */
}

.content.light p {
  color: rgba(242, 242, 242, 0.9);
}

/* Animations (Optional Fade-in could be added via JS, but smooth CSS is nice) */
.content {
  transition: transform 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #hero {
    height: 60vh;
  }

  .hero-overlay {
    padding: 2rem;
    width: 90%;
  }

  .hero-overlay h1 {
    font-size: 3rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .content {
    padding: 4rem 5vw;
  }

  .content h2 {
    font-size: 2.5rem;
  }

  .content p {
    font-size: 1rem;
  }
}