/* ============================================
   BANNERS.CSS - Section Titles & NFT Banners
   ============================================ */

/* Section Title with Background Banner */
.section-title {
  font-size: 50px;
  color: var(--warn);
  text-align: center;
  margin: 0 0 0 0;
  padding: 0 0 90px 0;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  position: relative;
  background-image: 
    url('/assets/nftmarketplacebanner.png'),
    linear-gradient(to bottom, transparent 0%, rgba(45, 22, 12, 0.92) 100%);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px 16px 0 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 90%);
  max-width: 90%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #FF8C00 60%, transparent 100%);
}

/* NFT Banner with Overlay Text */
.nft-banner {
  margin: 20px 0;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: var(--warm-glow), 0 8px 32px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.25))   /* was 0.36 */
          drop-shadow(0 0 50px rgba(255, 99, 71, 0.1))    /* was 0.24 */
          drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  position: relative;
}

.nft-banner a {
  display: block;
  position: relative;
  cursor: pointer;
}

.nft-banner-image {
  width: 100%;
  height: auto;
  display: block;
  animation: headerPulse 4s ease-in-out infinite;
}

.nft-banner a:hover .nft-banner-image {
  filter: brightness(1.15);
}

.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  padding: 20px;
  z-index: 200;
  pointer-events: none;
}

.banner-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.banner-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 5px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .banner-title {
    font-size: 28px;
  }
  
  .banner-subtitle {
    font-size: 14px;
  }
  
  .banner-overlay {
    padding: 20px;
  }

  .section-title {
    font-size: 28px;
    padding: 130px 20px 55px 20px !important;
    margin: -40px -40px 40px -40px;
  }
  
  .section-title::after {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    padding: 100px 16px 44px 16px !important;
    margin: -40px -40px 40px -40px;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 20px;
    padding: 60px 12px 35px 12px !important;
    margin: -40px -40px 40px -40px;
  }
}