/* ==========================================================================
   SITEMAP PAGE CUSTOM STYLES
   Project: BET SMART WIN BIGGER - Static HTML/CSS/JS Platform
   ========================================================================== */

/* Hero Section */
.sitemap-hero {
  position: relative;
  background-image: url('../images/sitemap-hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fallback background if the user hasn't uploaded the image yet */
@supports not (background-image: url('../images/sitemap-hero.png')) {
  .sitemap-hero {
    background-color: #121212;
  }
}

.sitemap-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); */
  z-index: 1;
}

/* Ambient Red Glow on Right side of Hero */
.sitemap-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -250px;
  width: 600px;
  height: 600px;
  background-color: #D40E37;
  opacity: 0.25;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.sitemap-hero .container {
  position: relative;
  z-index: 2;
}

.sitemap-hero-content {
  text-align: left;
}

.sitemap-hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
}

/* Sitemap Content Area */
.sitemap-content {
  padding: 100px 0 120px;
  background-color: #000000;
  position: relative;
}

.sitemap-grid-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.sitemap-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sitemap-col-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #FF154B;
  text-transform: capitalize;
  margin: 0;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sitemap-list li a {
  font-family: var(--font-body);
  font-size: 16px;
  color: #d6d6d6;
  transition: color var(--transition-normal);
  line-height: 1.4;
  display: inline-block;
}

.sitemap-list li a:hover {
  color: #FF154B;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Quick Links Section */
.sitemap-quick-section {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sitemap-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .sitemap-hero-title {
    font-size: 3.2rem;
  }

  .sitemap-content {
    padding: 70px 0 80px;
  }

  .sitemap-grid-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .sitemap-quick-section {
    margin-top: 60px;
  }

  .sitemap-quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sitemap-hero {
    height: 320px;
  }

  .sitemap-hero-title {
    font-size: 2.5rem;
  }

  .sitemap-content {
    padding: 60px 0 70px;
  }

  .sitemap-grid-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sitemap-quick-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sitemap-col-title {
    font-size: 20px;
  }

  .sitemap-list li a {
    font-size: 15px;
  }
}