/**
 * Hero Section and Events Slider Styles
 * Modern Bootstrap 5 compatible styling
 */

/* Ensure proper stacking and no overlap */
body.homepage {
  overflow-x: hidden;
}

/* ===== HERO NAVBAR CONTAINER ===== */
.hero-navbar-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(5px);
  z-index: 4;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease-out;
  padding: 6rem 0 2rem 0;
}

.hero-title {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Hero CTA Buttons */
.hero-cta .btn {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Custom hover effects for hero buttons */
.hero-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.3);
}

.hero-cta .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--bs-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Stats */
.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-link {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-link:hover {
  color: var(--bs-primary);
  transform: scale(1.1);
}

/* ===== EVENTS SLIDER SECTION ===== */
.events-slider-section {
  background: linear-gradient(60deg, #F5F5F5 0%, #ffffff 50%, #F5F5F5 100%);
  margin-top: 0;
  position: relative;
  clear: both;
  z-index: 10;
}

.section-title {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #e1586d 0%, #c01137 50%, #77002f 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Event Card Styling */
.event-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.event-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-image:hover {
  transform: scale(1.05);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(var(--bs-primary-rgb), 0.95);
  color: white;
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.badge-content .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-content .month {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.event-content {
  padding: 2rem 0;
}

.event-meta .badge {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.event-title {
  color: #333;
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.event-description {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.event-actions .btn {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.event-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb), 0.3);
}

.event-actions .btn-outline-secondary:hover {
  transform: translateY(-1px);
}

/* Carousel Custom Styling */
.carousel-indicators {
  bottom: -3rem;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(var(--bs-primary-rgb), 0.3);
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--bs-primary);
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  color: var(--bs-primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(var(--bs-primary-rgb), 0.8);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--bs-primary);
  transform: scale(1.1);
}

/* No Events Message */
.no-events-message {
  font-family: Futura, Helvetica, Arial, sans-serif;
}

/* ===== HERO CARDS SECTION ===== */
.hero-cards-section {
  background: linear-gradient(135deg, #F5F5F5 0%, #ffffff 50%, #F5F5F5 100%);
  position: relative;
}

.hero-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: none;
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(var(--bs-primary-rgb), 0.15);
}

.hero-card-image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.hero-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-card-image {
  transform: scale(1.1);
}

.hero-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.7) 0%, rgba(var(--bs-primary-rgb), 0.4) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card:hover .hero-card-overlay {
  opacity: 1;
}

.hero-card-icon {
  color: white;
  font-size: 3rem;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-card-icon {
  transform: scale(1);
}

.hero-card-content {
  padding: 2rem;
  text-align: center;
}

.hero-card-title {
  color: #333;
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-card-excerpt {
  color: #666;
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  height: 4.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.btn-hero-card {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 600;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-card:hover {
  background-color: var(--bs-primary-hover-bg, #7a0028);
  border-color: var(--bs-primary-hover-border-color, #7a0028);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.3);
  color: #fff;
}

/* ===== HERO NEWS SECTION ===== */
.hero-news-section {
  background: linear-gradient(35deg, #F5F5F5 0%, #ffffff 50%, #F5F5F5 100%);
  position: relative;
}

.hero-news-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
}

.hero-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(var(--bs-primary-rgb), 0.12);
  border-color: rgba(var(--bs-primary-rgb), 0.2);
}

.hero-news-header {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #7a0028 100%);
  padding: 1.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}

.news-date-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-date-content .day {
  display: block;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: Futura, Helvetica, Arial, sans-serif;
}

.news-date-content .month {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: Futura, Helvetica, Arial, sans-serif;
}

.news-icon {
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.hero-news-card:hover .news-icon {
  color: white;
  transform: scale(1.1);
}

.hero-news-content {
  padding: 2rem;
}

.hero-news-title {
  color: #333;
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-news-excerpt {
  color: #666;
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  height: 4.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.hero-news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-full-date {
  color: #999;
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.btn-news-read {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-news-read:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.2);
}

.btn-hero-news-all {
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 600;
  border-radius: 30px;
  padding: 1rem 2rem;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-news-all:hover {
  background-color: var(--bs-primary-hover-bg, #7a0028);
  border-color: var(--bs-primary-hover-border-color, #7a0028);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(var(--bs-primary-rgb), 0.3);
  color: #fff;
}

/* ===== HERO FOOTER (Homepage Only) ===== */
footer.hero-footer {
  padding: 0;
}

.hero-footer {
  position: relative;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #7a0028 50%, #5a001f 100%);
  color: white;
  overflow: hidden;
}

.hero-footer-background {
  position: relative;
  padding: 4rem 0 2rem 0;
}

.hero-footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.hero-footer-section {
  height: 100%;
}

.hero-footer-title {
  color: white;
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.hero-footer-title i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.hero-footer-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: #ebccd6;
  text-decoration: underline;
}

/* Social Links */
.hero-social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ebccd6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Links */
.hero-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-footer-link {
  color: rgba(255, 255, 255, 0.9);
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.hero-footer-link::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.hero-footer-link:hover {
  color: #ebccd6;
  padding-left: 2rem;
}

.hero-footer-link:hover::before {
  color: #ebccd6;
  transform: translateX(0.25rem);
}

/* Sponsor Section */
.hero-footer-sponsor {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.sponsor-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sponsor-logo {
  max-height: 60px;
  transition: all 0.3s ease;
}

.hero-footer-sponsor:hover .sponsor-logo {
  transform: scale(1.05);
}

/* Bottom Footer */
.hero-footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.hero-footer-bottom-link {
  color: rgba(255, 255, 255, 0.8);
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero-footer-bottom-link:hover {
  color: #ebccd6;
  text-decoration: underline;
}

/* Admin Panel */
.hero-admin-panel {
  background: #ebccd626;
  border: 1px solid #ebccd64d;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-family: Futura, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Mobile-first approach with flexible height */
@media (max-width: 991px) {
  .hero-navbar-container {
    backdrop-filter: blur(20px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    display: block;
  }
  
  .hero-background {
    min-height: auto;
    padding: 2rem 0 4rem 0;
    position: relative;
    display: block;
  }
  
  .hero-background .container-fluid {
    height: auto !important;
  }
  
  .hero-background .row {
    height: auto !important;
    align-items: stretch !important;
  }

  .hero-content {
    padding: 6rem 1rem 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem !important;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem !important;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stats {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    margin-bottom: 2rem !important;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .event-image {
    height: 250px;
  }
  
  .event-content {
    padding: 1rem 0;
  }
  
  .event-actions {
    text-align: center;
  }
  
  .event-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  /* Hero Cards responsive */
  .hero-cards-section {
    padding: 3rem 0 !important;
  }
  
  .hero-cards-section .section-title {
    font-size: 2rem;
  }
  
  .hero-card-image-container {
    height: 200px;
  }
  
  .hero-card-content {
    padding: 1.5rem;
  }
  
  .hero-card-title {
    font-size: 1.2rem;
  }
  
  .hero-card-excerpt {
    font-size: 0.9rem;
    height: 4.2rem;
  }
  
  .btn-hero-card {
    width: 100%;
    justify-content: center;
  }

  /* Hero News responsive */
  .hero-news-section {
    padding: 3rem 0 !important;
  }
  
  .hero-news-header {
    padding: 1.25rem;
    min-height: 80px;
  }
  
  .news-date-badge {
    padding: 0.75rem;
  }
  
  .news-date-content .day {
    font-size: 1.5rem;
  }
  
  .news-icon {
    font-size: 2rem;
  }
  
  .hero-news-content {
    padding: 1.5rem;
  }
  
  .hero-news-title {
    font-size: 1.2rem;
  }
  
  .hero-news-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .btn-news-read {
    width: 100%;
    justify-content: center;
  }
  
  .btn-hero-news-all {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Hero Footer responsive */
  .hero-footer-background {
    padding: 3rem 0 1.5rem 0;
  }
  
  .hero-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-footer-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .hero-social-links {
    justify-content: center;
    margin: 1rem 0;
  }
  
  .hero-footer-links {
    text-align: center;
    margin: 1rem 0;
  }
  
  .hero-footer-sponsor {
    margin: 1.5rem 0;
  }
  
  .sponsor-logo {
    max-height: 50px;
  }
  
  .hero-footer-copyright,
  .hero-footer-bottom-link {
    text-align: center;
    margin: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 6rem 1rem 1.5rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem !important;
    padding: 0 1rem;
  }
  
  .hero-cta {
    margin-bottom: 1.5rem !important;
  }
  
  .hero-stats {
    margin-top: 1.5rem !important;
    padding-top: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }

  /* Hero Cards responsive */
  .hero-cards-section .section-title {
    font-size: 1.8rem;
  }
  
  .hero-card-image-container {
    height: 180px;
  }
  
  .hero-card-content {
    padding: 1.25rem;
  }

  /* Hero News responsive */
  .hero-news-header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-news-content {
    padding: 1.25rem;
  }
  
  .hero-news-title {
    font-size: 1.1rem;
  }
  
  .hero-news-excerpt {
    font-size: 0.9rem;
    height: 4.2rem;
  }

  /* Hero Footer responsive */
  .hero-footer-background {
    padding: 2.5rem 0 1rem 0;
  }
  
  .hero-footer-title {
    font-size: 1.1rem;
    justify-content: center;
    text-align: center;
  }
  
  .hero-footer-text {
    text-align: center;
    font-size: 0.85rem;
  }
  
  .hero-footer-contact {
    text-align: center;
  }
  
  .hero-footer-contact p {
    justify-content: center;
  }
  
  .hero-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .hero-admin-panel {
    text-align: center;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    justify-content: center;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-background {
    background: #000;
  }
  
  .event-date-badge {
    background: #000;
    border: 2px solid #fff;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .scroll-indicator {
    animation: none;
  }
  
  .event-image,
  .btn,
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    transition: none;
  }
}