    :root {
      --main-purple: #980865;
      --light-purple: #e9d6f5;
      --white: #fff;
      --card-bg: #f3e5f5;
      --text-dark: #333;
      --accent: #4f117f;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--white);
      color: var(--text-dark);
      scroll-padding-top: 80px; /* Add padding for the sticky header */
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: var(--main-purple);
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      cursor: pointer;
    }

    .header-left img {
      height: 60px;
      width: auto;
    }

    .header-title {
      color: var(--white);
      font-size: 1.6rem;
      font-weight: 400;
      letter-spacing: 1px;
    }

    nav.nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      justify-content: flex-end;
    }

    .nav-toggle {
      display: none;
      font-size: 2rem;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
    }

    nav a {
      color: var(--white);
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 300;
      opacity: 0.85;
      border-bottom: 2px solid transparent;
      padding-bottom: 2px;
    }

    nav a:hover, nav a.active {
      opacity: 1;
      border-bottom: 2px solid var(--white);
    }

    @media (max-width: 700px) {
      .nav-toggle {
        display: block;
        margin-left: auto;
      }

    header {
        justify-content: space-between;
    }


      nav.nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      nav.nav-links.show {
        display: flex;
      }
    }

    main {
      max-width: 1000px;
      margin: 0 auto;
      padding: 36px 20px;
      line-height: 1.6;
    }

    h2 {
      font-size: 1.5rem;
      margin-bottom: 18px;
      color: var(--main-purple);
    }

    .about-section {
      display: flex;
      flex-direction: column;
      gap: 26px;
      align-items: stretch;
    }

    .about-text {
      flex: 1 1 220px;
      min-width: 220px;
    }

    .carousel-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--box-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.carousel-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative; /* Needed for absolutely positioned caption */
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  transition: opacity 0.5s;
}

/* Here's the magic */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 1px 1px;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: #333;
  transition: opacity 0.5s;
  z-index: 1;
  pointer-events: none;
}

    .carousel-controls {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
      pointer-events: none;
    }

    .carousel-btn {
      background: rgba(79, 17, 127, 0.7);
      color: var(--white);
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      opacity: 0.8;
      transition: background 0.2s, opacity 0.2s;
      margin: 0 6px;
      position: relative;
      top: 0;
      z-index: 2;
    }

    .carousel-btn:hover {
      background: var(--main-purple);
      opacity: 1;
    }

@media (max-width: 700px) {
  .carousel-caption {
    font-size: 0.85rem;
    padding: 1px 1px;
  }
}

    .concerts-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .concert-card {
      background: var(--main-purple);
      color: white;
      border-radius: 20px;
      display: flex;
      padding: 20px;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .concert-date {
      text-align: center;
      font-weight: 600;
      min-width: 80px;
    }

    .concert-date .year {
      font-size: 0.9rem;
      opacity: 0.7;
    }

    .concert-date .day {
      font-size: 2rem;
    }

    .concert-date .month {
      font-size: 1rem;
      text-transform: uppercase;
    }

    .concert-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .concert-details .title {
      font-size: 1.2rem;
      font-weight: 700;
    }

    .concert-details .subtitle {
      font-size: 1rem;
    }

    .concert-details .info {
      font-size: 0.9rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .concert-details .info span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    footer {
      text-align: center;
      margin: 60px 0 20px;
      font-size: 1rem;
      opacity: 0.7;
    }

    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--main-purple);
      color: white;
      border: none;
      border-radius: 50%;
      padding: 14px 16px;
      font-size: 1.5rem;
      cursor: pointer;
      display: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 999;
    }

    #backToTop:hover {
      background: #3a0d60;
    }