/* ========================================
   PASS 2: HONORS PAGE VISUAL POLISH
   Carousel refinement, hero maroon continuity
   ======================================== */

/* ========================================
   1. AWARDS HERO MAROON CONTINUITY
   ======================================== */

.awards-hero {
  background: linear-gradient(
    135deg,
    rgba(20, 5, 5, 0.95) 0%,
    rgba(13, 13, 15, 0.95) 50%,
    rgba(20, 5, 5, 0.95) 100%
  );
  position: relative;
  z-index: 2;
  min-height: 70vh;
}

.awards-hero::before {
  position: absolute;
  inset: 0;
  background: none;
  z-index: -1;
}

/* ========================================
   2. CAROUSEL POLISH
   ======================================== */

.creator-carousel-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 4rem auto;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(31, 31, 36, 0.8);
  border: 1px solid rgba(139, 0, 0, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.carousel-track {
  position: relative;
  display: flex;
  width: 100%;
}

.carousel-item {
  flex: 0 0 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: none;
}

.carousel-item.active {
  opacity: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.carousel-item-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(31, 31, 36, 0.6), rgba(13, 13, 15, 0.8));
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.carousel-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-creator-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}

.carousel-creator-title {
  font-size: 0.95rem;
  color: #8B0000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.carousel-creator-bio {
  color: #d4d4d8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   3. CAROUSEL CONTROLS
   ======================================== */

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.carousel-prev,
.carousel-next {
  background: rgba(139, 0, 0, 0.2);
  color: #f5f5f5;
  border: 1px solid rgba(139, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #8B0000;
  border-color: #8B0000;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.carousel-prev:active,
.carousel-next:active {
  transform: scale(0.95);
}

/* ========================================
   4. CAROUSEL INDICATORS
   ======================================== */

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid rgba(139, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #8B0000;
  transform: scale(1.3);
}

/* ========================================
   5. CATEGORY CARDS
   ======================================== */

.category-card {
  background: rgba(31, 31, 36, 0.6);
  border: 1px solid rgba(139, 0, 0, 0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 0, 0, 0.35);
  background: rgba(31, 31, 36, 0.8);
  box-shadow: 0 12px 24px rgba(139, 0, 0, 0.2);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.award-title {
  font-size: 0.95rem;
  color: #8B0000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.category-description {
  color: #d4d4d8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   6. SECTION TITLE STYLING
   ======================================== */

.section-title {
  text-align: center;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

/* ========================================
   7. AWARDS PAGE BACKGROUND
   ======================================== */

.awards-page {
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 15, 0.95),
    rgba(13, 13, 15, 0.9)
  );
}

/* ========================================
   8. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .creator-carousel-container {
    max-width: 80%;
  }

  .category-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .creator-carousel-container {
    max-width: 90%;
    border-radius: 8px;
  }

  .carousel-item.active {
    padding: 1.5rem;
  }

  .carousel-item-image {
    height: 250px;
    margin-bottom: 1rem;
  }

  .carousel-creator-name {
    font-size: 1.25rem;
  }

  .category-card {
    padding: 1rem;
  }

  .carousel-controls {
    gap: 0.75rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* ========================================
   9. ACCESSIBILITY
   ======================================== */

.carousel-prev:focus-visible,
.carousel-next:focus-visible,
.indicator:focus-visible {
  outline: 2px solid #8B0000;
  outline-offset: 2px;
}

.category-card:focus-visible {
  outline: 2px solid #8B0000;
  outline-offset: -2px;
}

/* ========================================
   10. NO TEXT OVERLAP
   ======================================== */

.carousel-item-overlay {
  position: relative;
  z-index: 2;
}

.carousel-item-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}
