@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;700&display=swap');


* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #E1E1E1;
}

h1 {
  font-size: 5rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

h2 {
  font-weight: 400;
  font-size: 1.8rem;
}

*:lang(yi) {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
}

* {
  font-family: 'Source Serif Pro', Georgia, serif;
}

.tagline:lang("yi") {
  text-align: start;
}

.hero {
  width: 100vw;
  aspect-ratio: 16 / 9;
  background-image: url('yenevelt_recording.jpg');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  margin-top: 20vh;
  pointer-events: none;
}

.small-overlay {
  color: #f8f8f8;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;

}

.title-svg {
  max-width: 30vw;
  height: auto;
  display: block;
  fill: green;
  stroke: green;
}

.stack *+* {
  margin-block-start: 0.5rem;
}

.small {
  font-variant: small-caps;
}

.ensemble-section {
  background-color: #49625e;
  /* dark background */
  width: 100vw;
  color: #f0f0f0;
}

.ensemble-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* Left side */
.ensemble-text {
  flex: 1 1 400px;
}

.ensemble-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ensemble-text h3 {
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  margin: 0.3rem 0;
}

/* Right side */
.ensemble-form {
  flex: 1 1 300px;
  background-color: #1b1b1b;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.ensemble-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ensemble-form label {
  font-size: 1rem;
  color: #ccc;
}

.ensemble-form input {
  padding: 0.75rem;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #111;
  color: #f8f8f8;
  font-size: 1rem;
}

.ensemble-form input::placeholder {
  color: #777;
}

.ensemble-form button {
  background-color: #d4a017;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.ensemble-form button:hover {
  background-color: #e5b935;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 768px) {
  .ensemble-container {
    flex-direction: column;
    text-align: center;
  }

  .ensemble-form {
    width: 100%;
  }
}

.bio {
  margin: auto;
  padding: 1.5rem;
  max-width: 60ch;
}