@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fill-colour-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-colour);
  z-index: 99;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: fadeOut;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  gap: 20px;
}

.fill-colour-loader img {
  width: 100px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-s);
}

.fill-colour-loader h1 {
  font-weight: var(--font-weight-bold);
  color: var(--white-colour);
}

.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

.section-title {
  text-align: center;
  padding: 60px 0 100px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}

.section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: var(--border-radius-s);
  background: var(--secondary-colour);
}

/* Hero Section Styling */
.hero-section {
  min-height: 50vh;
  background-image: url(/images/Roblox-Background.png);
  background-size: cover;
  /* background: var(--primary-colour); */
}

.hero-section .section-content {
  display: flex;
  align-items: center;
  min-height: 50vh;
  color: var(--white-colour);
  justify-content: center;
}

.hero-section .hero-details .title {
  font-size: var(--font-size-xxl);
  color: var(--secondary-colour);
  text-align: center;
}

.hero-section .hero-details .subtitle {
  margin-top: 8px;
  max-width: 100%;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  text-align: center;
}

.hero-section .hero-details .description {
  max-width: 100%;
  margin: 24px 0 40px;
  font-size: var(--font-size-m);
  text-align: center;
}

.hero-section .hero-details .buttons {
  display: flex;
  gap: 23px;
  align-items: center;
  justify-content: center;
}

.hero-section .hero-details .button {
  padding: 10px 26px;
  color: var(--primary-colour);
  background: var(--secondary-colour);
  border-radius: var(--border-radius-m);
  font-weight: var(--font-weight-medium);
  border: 2px solid transparent;
  transition: 0.3s ease;
  font-size: var(--font-size-l);
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .current-auction {
  color: var(--white-colour);
  border-color: var(--white-colour);
  background: transparent;
}

.hero-section .hero-details .current-auction:hover {
  color: var(--primary-colour);
  border-color: var(--secondary-colour);
  background: var(--secondary-colour);
}

.hero-section .hero-details .gamebid-logo {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-section .hero-details .gamebid-logo .hero-img {
  width: 100px;
  border-radius: var(--border-radius-s);
}

.hero-section .hero-details .hero-title {
  font-size: var(--font-size-title);
  /* color: var(--secondary-colour); */
}

.hero-section .gamebid-stats {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.hero-section .gamebid-stats .hero-stat {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
}

.hero-section .gamebid-stats .hero-stat-text {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-normal);
}

/* Current Auction */
.current-auction-section {
  min-height: 40vh;
  background-color: var(--primary-colour);
  display: flex;
  margin-top: 50px;
}

.current-auction-section .auction-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 75%;
  gap: 40px;
}

.current-auction-section .auction-container .auction-image img {
  border-radius: var(--border-radius-m);
  width: 350px;
  box-shadow: 0px 0px 65px -19px rgba(138, 255, 71, 1);
}

.current-auction-section .auction-container .auction-info {
  color: var(--white-colour);
}

.auction-info .current-auction-title {
  font-weight: var(--font-weight-normal);
}

.current-auction-section .auction-container .auction-info .auction-name {
  font-size: var(--font-size-xxl);
  margin-bottom: 15px;
}

.current-auction-section .auction-container .auction-info .auction-description {
  font-size: var(--font-size-l);
  margin-bottom: 50px;
}

.auction-info .button {
  padding: 10px 26px;
  color: var(--primary-colour);
  background: var(--secondary-colour);
  border-radius: var(--border-radius-m);
  font-weight: var(--font-weight-medium);
  border: 2px solid transparent;
  transition: 0.3s ease;
  font-size: var(--font-size-l);
}

.auction-info .button:hover {
  color: var(--white-colour);
  border-color: var(--white-colour);
  background: transparent;
}

/* About Us Styling */
.about-us {
  min-height: 100vh;
  width: 50%;
  margin: auto;
  background-color: var(--primary-colour);
  border-top: 2px solid var(--dark-colour);
  margin-top: 5rem;
}

.about-us .about-container {
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 25px;
}

.about-us .about-container .about-title {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  margin-top: 45px;
}

.about-us .about-container .about-subtitle {
  font-size: var(--font-size-m);
  margin-top: 35px;
}

.about-us .about-container .about-description {
  margin-top: 25px;
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
}

.about-us .about-container .about-list {
  margin-top: 10px;
  list-style: disc;
  text-align: left;
  font-size: var(--font-size-m);
}

.bold {
  font-weight: bold;
}