@import url('https://fonts.googleapis.com/css2?family=Cooper+Hewitt:wght@400;700&family=Fraunces:opsz,wght@9..144,600&display=swap');

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

body {
  background-color: #1a1a1a;
  color: #f5f5f5;
  font-family: 'Helvetica Neue', sans-serif;
}

.title-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 50px;
}

.title-section h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #f8f8f8;
}

.image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}

.image-section img {
  width: 85%;
  max-width: 1100px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.gigs-section {
  width: 85%;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 120px;
}

.gigs-section h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  opacity: 0.6;
}

.gig {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
  transition: opacity 0.2s ease;
}

.gig:hover {
  opacity: 0.6;
}

@media (max-width: 700px) {

  .title-section {
    padding-top: 60px;
  }

  .image-section img {
    width: 92%;
  }

  .gig {
    flex-direction: column;
    gap: 8px;
  }

}
