﻿.carousel-caption h1 {
  line-height: 1.2;
  font-weight: 700;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  color: #ffffff;
  margin: 0 auto;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 1.8rem;
    padding: 8px 15px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 1.5rem;
    padding: 6px 12px;
  }
}

/* Optional subtle animation for pop */
.carousel-caption h1 {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}