.banner-section{
  padding: 3rem 0;
}

.banner-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); */
  overflow: hidden;
  /* max-width: 1200px; */
  width: 100%;
  display: flex;
  flex-direction: row;
}

.banner-background {
  background-image: url("../img/marathon-img/IMG-20250525-WA0014.jpg");
}

.text-banner {
  color: white;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 300px;
  background: linear-gradient(45deg, #09cc7f, #060d8fce);
}

.event-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(248, 246, 246, 0.3);
  letter-spacing: 2px;
  line-height: 1.1;
  opacity: 1;
  color: white;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 5px;
  font-weight: 500;
}

.detail-value {
  font-size: 1.3rem;
  font-weight: bold;
}

.image-section {
  flex: 1;
  padding: 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .banner-section{
    padding: 4rem 0;
  }
  
  .banner-container {
    flex-direction: column;
    max-width: 600px;
  }

  .text-banner {
    min-height: auto;
    text-align: center;
  }

  .event-title {
    font-size: 2.2rem;
  }

  .event-details {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .detail-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
  }

  .detail-value {
    font-size: 1rem;
  }

  .image-section {
    min-height: 150px;
  }
  .image-section img {
    flex: 0;
    /* padding: 10px; */
    background: #f8f9fa;
    display: block;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .event-details {
    flex-direction: column;
  }

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

  .event-title {
    font-size: 1.8rem;
  }
}
