* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  background-image: url("img/album.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #e8e8e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  position: relative;
}

/* Dark overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* Grain effect */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.15;
  z-index: 2;
  pointer-events: none;
}

.grid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 3;
  padding: 40px 20px;
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.content-section {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.logo {
  margin: 0 auto;
  max-width: 200px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.logo:hover {
  transform: scale(1.05);
}

h1 {
  font-family: "Notable", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #c4a57b;
  margin-bottom: 10px;
  letter-spacing: 4px;
  text-transform: lowercase;
}

.tagline {
  color: #915c00;
  font-size: 1rem;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.music {
  margin-top: 60px;
  width: 100%;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(196, 165, 123, 0.2);
}

.music h2 {
  font-family: "Notable", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #c4a57b;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.spotify-container {
  border-radius: 12px;
  overflow: hidden;
}

.links {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.links a {
  color: #c4a57b;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 12px 24px;
  border: 2px solid #c4a57b;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.links a:hover {
  background-color: #c4a57b;
  border-color: #c4a57b;
  color: #0d0d0d;
  transform: translateY(-2px);
}

.tours,
.about {
  margin-top: 60px;
  width: 100%;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(196, 165, 123, 0.2);
}

.tours h2,
.about h2 {
  font-family: "Notable", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #c4a57b;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.tours p,
.about p {
  color: #d4d4d4;
  font-size: 1rem;
  line-height: 1.8;
}

.tours-empty {
  color: #888;
  font-style: italic;
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tour-date {
  display: grid;
  grid-template-columns: 130px 1fr 1fr 100px;
  gap: 20px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border-left: 3px solid #c4a57b;
  transition: all 0.3s ease;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  align-items: center;
}

.tour-date:hover {
  background-color: rgba(0, 0, 0, 0.4);
  transform: translateX(5px);
}

.tour-date:hover .tickets-btn {
  background-color: #c4a57b;
  border-color: #c4a57b;
  color: #0d0d0d;
  transform: translateY(-2px);
}

.tour-date .date {
  color: #c4a57b;
  font-weight: 600;
  font-size: 0.95rem;
}

.tour-date .venue {
  color: #e8e8e8;
  font-weight: 500;
  font-size: 1rem;
}

.tour-date .location {
  color: #999;
  font-size: 0.9rem;
}

.tour-date .tickets-btn {
  color: #c4a57b;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 16px;
  border: 1px solid #c4a57b;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
}

footer {
  margin-top: auto;
  padding-top: 60px;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .grid-container {
    padding: 20px;
  }

  .content-section {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .logo {
    max-width: 150px;
    width: 150px;
    height: 150px;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .links {
    gap: 15px;
  }

  .links a {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .tour-date {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .tour-date .tickets-btn {
    justify-self: start;
    margin-top: 5px;
  }
}
