.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1697px;
    margin: 0 auto;
    padding: 10px 20px; /* Adds spacing */
}

.section-title {
    font-size: 40px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    color: black;
}

.view-all {
    font-size: 32px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    text-decoration: underline;
    color: black;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
        gap: 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .view-all {
        font-size: 24px;
    }
}

.concert-container {
    margin-top: 50px;
}

.concert-item {
    position: relative;
    display: block;
    text-decoration: none;
}

.concert-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E9BAFF;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.concert-item:hover::after {
    opacity: 0.6;
}

.concert-banner {
    margin: 0 auto;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    max-width: 1700px;
    height: auto;
    overflow: hidden;
}

.concert-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concert-banner-text {
    position: absolute;
    bottom: 45%;
    left: 5%;
    color: white;
    font-size: clamp(1rem, 6vw, 4rem);
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.concert-banner-body-text {
    position: absolute;
    bottom: 40%;
    left: 5%;
    color: white;
    font-size: clamp(2rem, 1vw, 2rem);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.concert-banner-area-text {
    position: absolute;
    bottom: 35%;
    left: 5%;
    color: white;
    font-size: clamp(1rem, 1vw, 2rem);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.concert-banner-area-text2 {
    position: absolute;
    bottom: 31%;
    left: 5%;
    color: white;
    font-size: clamp(1rem, 1vw, 2rem);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .concert-banner-body-text {
        bottom: 38%;

    }
    .concert-banner-area-text {
        bottom: 35%;

    }
    .concert-banner-area-text2 {
        bottom: 29%;

    }
}

@media (max-width: 768px) {
    .concert-banner-text,
    .concert-banner-body-text,
    .concert-banner-area-text,
    .concert-banner-area-text2 {
        color: black;
        position: relative;
        left: 0%;
        text-align: center;
    }

    .concert-banner-body-text {
        font-size: 20px;

    }
    .concert-banner-area-text {
        font-size: 16px;

    }
    .concert-banner-area-text2 {
        font-size: 16px;

    }
}

.btn-custom {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: inline-flex; 
    justify-content: center;
    width: auto;
    max-width: 157px;
    padding: 16px 34px;
    border-radius: 40px;
    background-color: #e9baff;
    text-decoration: none;
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: normal;
    transition: background-color 0.3s ease;
  }
  
  .btn-custom:hover {
    background-color: white;
  }
  
  @media (max-width: 768px) {
    .btn-custom {
        position: relative;
        left: 0%;
      font-size: 1rem; /* Adjust font size for smaller screens */
      padding: 14px 28px; /* Adjust padding for mobile */
      max-width: 140px; /* Adjust max width for smaller screens */
      justify-content: center;
      align-self: center;
      width: auto;
      max-width: 157px;
      padding: 16px 34px;
      border-radius: 40px;
      background-color: #e9baff;
      text-decoration: none;
      color: #000;
      text-align: center;
      font-family: "Inter", sans-serif;
      font-size: 1.125rem;
      font-weight: 400;
      transition: background-color 0.3s ease;
    }
  }
  
  @media (max-width: 480px) {
    .btn-custom {
      font-size: 0.875rem; /* Further reduce font size for very small screens */
      padding: 12px 24px; /* Adjust padding further for small screens */
      max-width: 120px; /* Further adjust max width for very small screens */
    }
  }



/* Container styles */
.showtimes-container {
    margin: 0 auto;
    margin-bottom: 50px;
    width: 100%;
    max-width: 1700px;
    height: 250px;
    padding: 69px 66px;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
  }
  
  /* Inner container */
  .inner-container {
    width: 100%;
    max-width: 1561px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Text container */
  .text-container {
    width: 771px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  /* Date and location text */
  .date {
    color: white;
    font-size: 48px;
    font-family: 'Alfa Slab One', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    align-self: stretch;
  }
  
  .location {
    color: white;
    font-size: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    align-self: stretch;
  }
  
  /* Button styles */
  .button {
    width: 217px;
    height: 80px;
    padding: 25px 43px;
    background: #E9BAFF;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Button text */
  .button-text {
    color: black;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
  }
  
  /* Responsive styles */
  @media (max-width: 1200px) {
    .showtimes-container {
      padding: 50px 20px;
    }
  
    .inner-container {
      flex-direction: column;
      align-items: center;
    }
  
    .text-container {
      width: 100%;
      text-align: center;
    }
  
    .date {
      font-size: 36px;
    }
  
    .location {
      font-size: 24px;
    }
  
    .button {
      width: 200px;
      height: 60px;
    }
  
    .button-text {
      font-size: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .showtimes-container {
      padding: 40px 10px;
    }
  
    .date {
      font-size: 28px;
    }
  
    .location {
      font-size: 20px;
    }
  
    .button {
      width: 180px;
      height: 50px;
    }
  
    .button-text {
      font-size: 18px;
    }
  }
  
  @media (max-width: 480px) {
    .showtimes-container {
      padding: 30px 10px;
    }
  
    .date {
      font-size: 24px;
    }
  
    .location {
      font-size: 18px;
    }
  
    .button {
      width: 150px;
      height: 45px;
    }
  
    .button-text {
      font-size: 16px;
    }
  }
  