/* ===== Banner Color Enhancement ===== */
.community-section-banner .background-layer {
  background: 
    linear-gradient(112deg, #1A2A4F 0%, #2A3D66 100%);
}

.banner-content h2 span {
  color: #FFD700;
  text-shadow: 
    0 0 8px rgba(255, 215, 0, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Button - Gold Metallic Refinement */
.applyToExhibitButton button {
  background: 
    linear-gradient(135deg, 
      #FFD700 0%, 
      #E6C200 50%, 
      #FFD700 100%);
  color: #1A2A4F;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.applyToExhibitButton button:hover {
  background: 
    linear-gradient(135deg, 
      #FFDF40 0%, 
      #FFD700 50%, 
      #E6C200 100%);
}

/* Subtle Glow Effects */
.banner-content h2 {
  position: relative;
}

.banner-content h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #FFD700;
  opacity: 0.7;
}

/* Carousel Controls (if visible) */
.owl-prev i, 
.owl-next i {
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

.owl-prev:hover i, 
.owl-next:hover i {
  color: #FFF;
}

/* ===== Exhibitor Benefits Section ===== */
.community-section-text-2 {
  background-color: #F8F5F2; /* Soft cream (matches Spectrum Art Week's cards) */
  padding: 4rem 2rem;
}

.section-title strong {
  color: #2A3D66; /* Deep indigo from banner */
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.section-title strong::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FFD700; /* Gold accent from banner */
}

.markdown-contain {
  color: #333333; /* Dark gray for readability */
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.markdown-contain ul {
  list-style: none;
  padding-left: 1.2rem;
  margin-top: 1.5rem;
}

.markdown-contain li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
}

.markdown-contain li::before {
  content: "•";
  color: #FFD700; /* Gold bullets */
  font-size: 1.8rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

/* Hover effects for interactive feel */
.markdown-contain li:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* ===== Exhibition Space Options Section ===== */
.community-section-text-3 {
  background-color: #FFFFFF; /* Pure white background */
  padding: 4rem 2rem;
  border-top: 1px solid rgba(42, 61, 102, 0.1); /* Subtle indigo tint */
}

.section-title strong {
  color: #2A3D66; /* Deep indigo */
  font-size: 2.2rem;
  display: inline-block;
  position: relative;
}

.markdown-contain {
  max-width: 800px;
  margin: 0 auto;
}

.markdown-contain ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.markdown-contain li {
  background: #FFFFFF; /* Changed to pure white */
  border: 1px solid rgba(42, 61, 102, 0.1); /* Added subtle border */
  border-left: 4px solid #FFD700; /* Gold accent bar */
  padding: 1.5rem;
  flex: 1;
  min-width: 250px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.markdown-contain li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.markdown-contain li strong {
  color: #2A3D66; /* Indigo for text */
  font-weight: 700;
}

/* Price Highlighting */
.markdown-contain li strong:last-child {
  color: #D4AF37; /* Slightly deeper gold for prices */
  display: block;
  margin-top: 0.5rem;
  font-size: 1.3rem;
}

.banner-content h2 span {
  animation: neonTransition 3s ease-in-out infinite alternate;
}

@keyframes neonTransition {
  0% {
    color: #FFD700; /* Neon Yellow */
    text-shadow: 
      0 0 5px #FFD700,
      0 0 10px #FFD700,
      0 0 20px #FFD700,
      0 0 30px rgba(255, 215, 0, 0.5);
  }
  50% {
    color: #FF69B4; /* Hot Pink */
    text-shadow: 
      0 0 5px #FF69B4,
      0 0 10px #FF69B4,
      0 0 20px #FF69B4,
      0 0 30px rgba(255, 105, 180, 0.5);
  }
  100% {
    color: #FF1493; /* Deep Pink */
    text-shadow: 
      0 0 10px #FF1493,
      0 0 20px #FF1493,
      0 0 30px #FF1493,
      0 0 40px rgba(255, 20, 147, 0.8);
  }
}

/* Remove left space in the section */
section.community-section-text-2 {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

