body {
  background-color: #f6f0e3;
  font-family: 'Inter', sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.page-container {
    padding: 2rem;
  }

h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #111;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  margin: 4rem 0 2rem;
  color: #111;
  text-align: left;
}

.year-divider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #888;
  padding: 0.5rem 0;
  margin-top: 3rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.year-divider h2 {
  margin: 0;
  font-size: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.toggle-symbol {
  font-size: 1.5rem;
  font-family: 'Oswald', sans-serif;
}

.produzioni-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
}

.produzione {
  background-color: #fff7e0;
  border: 1px solid #ddd;
  width: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.produzione:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.produzione img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.produzione-content {
  padding: 1.2rem 1rem 0.5rem;
}

.divider {
  height: 2px;
  background-color: #e0e0e0;
  margin-bottom: 0.5rem;
}

.produzione h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #43a69e;
  text-transform: uppercase;
  margin: 0 0 0.2rem;
}

.produzione p {
  font-weight: 700;
  margin: 0 0 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #555;
}

.produzione a {
  display: block;
  text-align: center;
  background-color: #111;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  padding: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
}

.produzione a:hover {
  background-color: #333;
}

.archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.archive-header h2.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: #111;
  margin: 0;
  flex: 1 1 auto;
}

#search-input {
  padding: 0.8rem 1.2rem 0.8rem 2.5rem;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid #ccc;
  border-radius: 30px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #111;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

#search-input:focus {
  border-color: var(--accent-color, #43a69e);
  outline: none;
  box-shadow: 0 0 0 3px rgba(67, 166, 158, 0.2);
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  flex: 0 0 auto;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #111;
  z-index: 2;
  pointer-events: none;
}

.header-spacer {
    height: 90px;
  }

  .tournee-spacer {
    height: 30px;
  }