/* ========================
   Promos Page – promo.css
======================== */

/* Section Background */
.promo-section.section-bg {
  background-color: #f0fdf4;
  padding: 3rem 1rem;
  border-radius: 12px;
  overflow: hidden;
}

/* Title Styling */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #10B981;
  text-align: center;
}

/* Subtitle Styling */
.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Optional Green Accent Text */
.text-green {
  color: #065f46;
}

/* Promo Badge */
.badge-promo {
  display: inline-block;
  background: linear-gradient(90deg, #FBBF24, #F59E0B);
  color: #111827;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  animation: pulsePromo 2s infinite;
  box-shadow: 0 0 0 rgba(251, 191, 36, 0.7);
}

/* Promo Pulse Animation */
@keyframes pulsePromo {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

/* Promo Image */
.promo-image {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 1.5rem auto;
  object-fit: cover;
}

/* Image Hover Effect */
.promo-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

/* Responsive Typography & Spacing */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .promo-section.section-bg {
    padding: 2rem 1rem;
  }

  .promo-image {
    border-radius: 8px;
  }
}
