
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Poppins', sans-serif; line-height: 1.6; background: #fff; color: #111; }
body {
  background: radial-gradient(circle at top, #2f3f41 0%, #0c0c0c 60%);
  color: #fff;
}
    /* ===== SMOOTH SCROLL ===== */
html {
  scroll-behavior: smooth;
}

/* Offset for fixed header */
section {
  scroll-margin-top: 90px;
}
    /* HEADER */
    header {
      background: #000;
      color: #fff;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 10;
    }
    header .logo { font-size: 24px; font-weight: 600; }
    header nav a {
      color: #fff;
      margin-left: 20px;
      text-decoration: none;
      font-size: 16px;
    }
    header nav a:hover { opacity: 0.7; }

    /* HERO SECTION */
    .hero {
      background: url('your-main-image.webp') center / cover no-repeat;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 0 20px;
    }
    .hero h1 { font-size: 48px; font-weight: 700; margin-bottom: 10px; }
    .hero p { font-size: 20px; }

    /* MAIN CONTENT */
    .container { padding: 10px 0px ; }

    .section-title {
      font-size: 28px;
      margin-bottom: 15px;
      text-align: center;
      font-weight: 600;
    }

    .events-list {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      margin-top: 30px;
    }
    .event-card {
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
    }
    .event-card h3 { margin-bottom: 8px; font-size: 20px; }
    .event-card p { font-size: 15px; color: #555; }

    /* FOOTER */
    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 10px;
      font-size: 14px;
    }
   .about-music-section {
  background: linear-gradient(180deg, #cfd6e0, #bfc7d3);
  padding: 80px 6%;
}

.about-music-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.music-box iframe {
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.about-box h3 {
  letter-spacing: 3px;
  font-size: 22px;
  margin-bottom: 20px;
}

.tagline {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

.about-box p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}

/* Mobile */
@media (max-width: 900px) {
  .about-music-grid {
    grid-template-columns: 1fr;
  }
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text-panel {
    padding: 50px 30px;
  }

  
}
.about-image-box {
  position: relative;
}

.about-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55)
  );
}

/* ===== UPCOMING SHOWS ===== */

.tour-section {
  padding: 10px 0;
  background: #faf7f2;
  font-family: "Georgia", serif;
}

.tour-title {
  text-align: center;
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: #111;
}

.tour-list {
  max-width: 1200px;
  margin: 0 auto;
}

.tour-item {
  display: grid;
  grid-template-columns: 160px 1fr 180px;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid #e5e1da;
}

.tour-date {
  text-align: left;
}

.tour-date .day {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.tour-date .weekday {
  font-size: 14px;
  letter-spacing: 3px;
  color: #555;
  margin-top: 6px;
}

.tour-info h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #222;
}

.tour-info .location {
  font-size: 16px;
  color: #555;
  max-width: 600px;
}

.tour-actions {
  text-align: right;
}

.btn-outline {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid #333;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .tour-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-actions {
    text-align: left;
  }
}




/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .music-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 99999;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 100000;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* ===== NAV ===== */
.mobile-nav {
  display: flex;
  gap: 32px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(45vh - 72px);
    background: #000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 99998;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    font-size: 26px;
  }
}


.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content{
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-content h4{
  font-size: 18px;
  margin: 0;
}

.cookie-content p{
  font-size: 14px;
  opacity: 0.85;
  max-width: 600px;
}

.cookie-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-actions button{
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-consent{
  background: #25D366;
  color: #000;
  font-weight: 600;
}

.btn-decline{
  background: #444;
  color: #fff;
}

.manage-link{
  color: #aaa;
  font-size: 13px;
  text-decoration: underline;
}

@media(max-width: 768px){
  .cookie-content{
    flex-direction: column;
    align-items: flex-start;
  }
}
