
@font-face {
  font-family: 'SharpGroteskBook';
  src: url('../fonts/SharpGrotesk-Book15.otf') format('opentype');
}
@font-face {
  font-family: 'SharpGroteskBold';
  src: url('../fonts/SharpGrotesk-Bold15.otf') format('opentype');
}

body {
  background-color: #ebeae9;
  color: #3a2c26;
  font-family: 'SharpGroteskBook', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'SharpGroteskBold', sans-serif;
  margin: 0.5em 0;
}

header {
  background-color: #cf1622;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2em;
}

header img.logo {
  height: 100px;
}

nav {
  background-color: #cf1622;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  padding: 0;
  margin: 0;
  font-size: 1.1em;
}

nav a {
  color: #ebeae9;
  text-decoration: none;
  font-weight: bold;
}

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

footer {
  background-color: #3a2c26;
  color: #ebeae9;
  text-align: center;
  padding: 1em 0;
  font-size: 0.9em;
}

section {
  padding: 2em;
}

button, .cta {
  background-color: #cf1622;
  color: #ebeae9;
  border: none;
  padding: 0.7em 1.5em;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}
.about {
  max-width: 800px;
  margin: auto;
  padding: 3em 2em;
  line-height: 1.7;
  font-size: 1.15em;
}
.director {
  background-color: #f5f4f3;

}

.director-title {
  max-width: 800px;
  margin: auto;
  padding: 3em 2em;
  line-height: 1.7;
  font-size: 1.15em;
}

.director-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: flex-start;
  
  margin: auto;
}

.director-photo {
  max-width: 300px;
  border-radius: 10px;
}

.director-bio {
  flex: 1;
}
.program-gallery {
  max-width: 800px;
  margin: auto;
  padding: 3em 2em;
}

.concert-card {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 2em;
  overflow: hidden;
}

.concert-photo {
  width: 100%;
  display: block;
  height: auto;
}

.concert-info {
  padding: 1.5em;
}

.concert-info h3 {
  margin-top: 0;
  font-size: 1.3em;
  color: #3a2c26;
}

.concert-info p {
  margin: 0.3em 0;
}

.concert-info .tag {
  background-color: #cf1622;
  color: #ebeae9;
  display: inline-block;
  padding: 0.3em 0.6em;
  font-size: 0.9em;
  border-radius: 4px;
  margin-top: 0.5em;
}

.concert-info .cta {
  display: inline-block;
  margin-top: 1em;
  background-color: #cf1622;
  color: #ebeae9;
  padding: 0.5em 1em;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
.sponsors {
  max-width: 900px;
  margin: auto;
  padding: 3em 2em;
  font-size: 1.15em;
  line-height: 1.7;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin: 2em 0;
}

.sponsor-logos img {
  height: 80px;
  object-fit: contain;
}

.sponsor-call {
  background-color: #f5f4f3;
  padding: 2em;
  border-radius: 8px;
  text-align: center;
}

.sponsor-call h3 {
  margin-top: 0;
}

.sponsor-call .cta {
  background-color: #cf1622;
  color: #ebeae9;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1em;
  font-weight: bold;
}
.past-editions {
  max-width: 800px;
  margin: auto;
  padding: 3em 2em;
  font-size: 1.15em;
  line-height: 1.7;
}

.edition {
  background-color: #fff;
  border-left: 6px solid #cf1622;
  padding: 2em;
  margin-bottom: 3em;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.edition img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin-bottom: 1em;
  border-radius: 5px;
  margin-right: 1em;
}

.edition .cta {
  display: inline-block;
  margin-top: 1em;
  background-color: #cf1622;
  color: #ebeae9;
  padding: 0.5em 1em;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
.contact {
  max-width: 800px;
  margin: auto;
  padding: 3em 2em;
  font-size: 1.15em;
  line-height: 1.7;
}

.contact-info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2em;
}

.contact-info li {
  margin-bottom: 0.5em;
}

.contact-form {

  margin-right: 1.5em;
}

.form-wrapper {
  background-color: #ffffff;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 2em auto;
}

.contact-form label {
  font-weight: bold;
  margin-top: 0.5em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  margin-top: 0.3em;
}

.contact-form button {
  background-color: #cf1622;
  color: #ebeae9;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1em;
}
.concert-detail {
  max-width: 800px;
  margin: auto;
  padding: 3em 2em;
  font-size: 1.15em;
  line-height: 1.7;
}

.concert-banner {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5em;
}

.concert-detail ul {
  padding-left: 1.2em;
  margin-top: 1em;
  margin-bottom: 2em;
}

.concert-detail .cta {
  background-color: #cf1622;
  color: #ebeae9;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.artist-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5em 0 2em;
}

.artist-list li {
  margin-bottom: 0.5em;
}

.artist-list a {
  color: #3a2c26;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #cf1622;
  transition: all 0.2s ease;
}

.artist-list a:hover {
  color: #cf1622;
  border-bottom-color: transparent;
}
.artist-detail {
  max-width: 800px;
  margin: auto;
  padding: 3em 2em;
}

.artist-photo {
  max-width: 300px;
  border-radius: 10px;
  margin-bottom: 1em;
}

.cta {
  background-color: #cf1622;
  color: #ebeae9;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1.5em;
}