/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@900&family=Saira+Condensed:wght@700&display=swap');

/* ----------------------------
   HERO SECTION
----------------------------- */
.hall-of-fame-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 7%;
  overflow: hidden;
  background-color: #000;
}

/* Background Image */
.hall-of-fame-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://theciomogul.com/wp-content/uploads/2025/10/pngtree-business-atmosphere-black-gold-particles-lines-black-background-picture-image_1031386.png') center center / cover no-repeat;
  z-index: 0;
}

/* Overlay */
.hall-of-fame-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

/* Content */
.hall-of-fame-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

/* Main Heading */
.hall-of-fame-hero h1 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 60.7px;
  letter-spacing: -1.78px;
  color: #fff;
  margin: 0 0 20px 0;
}

.hall-of-fame-hero h1 .highlight {
  color: #FF4D4D; /* Highlight color */
}

/* Author Text */
.hall-of-fame-hero .author {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 5px;
}

/* ----------------------------
   RESPONSIVE DESIGN
----------------------------- */
@media (max-width: 1024px) {
  .hall-of-fame-hero {
    height: 65vh;
    padding: 0 6%;
  }
  .hall-of-fame-hero h1 {
    font-size: 42px;
    line-height: 52px;
  }
}

@media (max-width: 768px) {
  .hall-of-fame-hero {
    height: 60vh;
    padding: 0 5%;
  }
  .hall-of-fame-hero h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .hall-of-fame-hero .author {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hall-of-fame-hero {
    height: 55vh;
    padding: 0 5%;
  }
  .hall-of-fame-hero h1 {
    font-size: 26px;
    line-height: 34px;
  }
}
