html, body {
      margin: 0;
      padding: 0;
      background-color: #ffffff;
      font-family: notosans, sans-serif;
    }

     header {
      padding: 0.5rem 1rem;
      color: #000000;
      position: relative;
      z-index: 30;
      overflow: hidden;
    }
    .headerlogo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
    .logo {
      height: auto;
      text-align: center;
      width: auto;
      max-width: 160px;
      display: block;
    }

.container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 20; /* ensures content is above rain */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 1rem;
}

    h1 {
      font-size: clamp(2rem, 6vw, 3rem);
      color: #000000;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: clamp(0.9rem, 3vw, 1rem);
      color: #000000;
      margin-bottom: 1rem;
    }

    p a {
      color: #000000;
      text-decoration: none;
    }

    p a:hover {
      text-decoration: underline;
    }

 .container img {
  max-width: 70%;
  height: auto;
  border-radius: 12px;
  pointer-events: none;
  user-select: none;
}
section {
      max-width: 900px;
      margin: 2rem auto;
      padding: 1rem;
      z-index: 30;
    }

    /* Show Dates */
    .dates-list {
      list-style: none;
      padding: 0;
      z-index: 30;
    }

    .dates-list li {
      background: #fff;
      margin: 0.5rem 0;
      padding: 1rem;
      border-radius: 10px;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 0.3em;
      justify-content: space-between;
      align-items: center;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeSlideUp 0.6s ease forwards;
      z-index: 30;
    }
    .dates-list li:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .dates-list li:nth-child(1) { animation-delay: 0.2s; }
    .dates-list li:nth-child(2) { animation-delay: 0.4s; }
    .dates-list li:nth-child(3) { animation-delay: 0.6s; }
    .dates-list li:nth-child(4) { animation-delay: 0.8s; }

    @keyframes fadeSlideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .date {
      font-weight: bold;
      color: #222;
      z-index: 30;
    }

    .venue {
      color: #666;
      font-size: 0.95rem;
      z-index: 30;
    }

    /* Merch Grid */
    .merch-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      z-index: 30;
    }

    .merch-item {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      padding: 1rem;
      z-index: 30;
    }
  

    .merch-item img {
      max-width: 160px;
      width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
      margin: 0 auto 1rem auto;
    }

    .merch-item h3 {
      margin: 0.8rem 0 0.3rem;
      font-size: 1.1rem;
    }

    .merch-item p {
      margin: 0;
      color: #777;
    }

    .price {
      color: #e63946;
      font-weight: italic;
    }
    .merch-contact {
        font-size: 0.rem;
        color: #999;
        margin-top: -0.5em;
        margin-bottom: 1.2em;
        text-align: center;
        font-weight: 400;
        letter-spacing: 0.01em;
        box-shadow: none;
}

        /* 🌧️ Rain container (behind everything) */
.rain-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0; /* stays behind the content */
}

/* 💧 Each falling image */
.drop {
  position: absolute;
  top: -50px;
  opacity: 0.4;
  transform-origin: center;
  animation: fall linear forwards;
  max-width: none !important; /* 👈 prevent global rule from shrinking */
  border-radius: 0 !important;
  background: none;
}
/* Animation for the falling motion */
@keyframes fall {
  to {
    transform: translateY(110vh) rotate(var(--rotation));
    opacity: 0.3;
  }
}
.about-us {
  max-width: 700px;
  margin: 0.5rem auto 1.5rem auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(137, 137, 137, 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  z-index: 50;
}
.about-us h2 {
  margin-top: 0;
  color: #e63946;
  font-size: 2rem;
  font-weight: 600;
}
.about-us p {
  padding: 1.2em 1em;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  margin: 1.2em 0;
}
.event-btn {
  background: #e63946;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0em;
  transition: background 0.2s;
}
.event-btn-tba {
  background: #414141;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0em;
}
.event-btn:hover {
  background: #b71c2b;
}
.site-footer {
  background: #ffffff;
  border-top: 1px solid #eee;
  padding: 1.5rem 0 1.2rem 0;
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: #222;
  z-index: 100;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 0.7em;
}
.footer-instagram {
  display: inline-block;
  color: #e63946;
  transition: color 0.2s;
  margin-bottom: 0.2em;
}
.footer-instagram:hover {
  color: #b71c2b;
}
.footer-contact a {
  color: #222;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #e63946;
}
.slideshow-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow-wrapper {
  position: relative;
  display: inline-block;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(230,57,70,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.2em;
  height: 2.2em;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.slideshow-arrow.left {
  left: 10px;
}
.slideshow-arrow.right {
  right: 10px;
}
.slideshow-arrow:hover {
  background: #b71c2b;
  opacity: 1;
}
@media (max-width: 600px) {
  .slideshow-arrow {
    width: 1.7em;
    height: 1.7em;
    font-size: 1.1em;
  }
  .slideshow-arrow.left {
    left: 2px;
  }
  .slideshow-arrow.right {
    right: 2px;
  }
}