/* style.css */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
}

.page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px;
}

/* Balanced header: left / center / right */
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.header-left {
  justify-self: start;
}

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  height: 80px;
  width: auto;
}

.title {
  margin: 0;
  font-size: 2rem;
  text-align: center;
}

/* Lighter subtitle selector */
.langlabel {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 0.2px;
}

.langselect {
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 6px;
  background: transparent;
  opacity: 0.75;
}

.langselect:focus {
  opacity: 1;
  outline: none;
  border-color: rgba(0,0,0,0.35);
}

/* New intro copy */
.lead {
  margin: 6px 0 2px;
  text-align: center;
  font-size: 18px;
}

.lead2 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 16px;
  opacity: 0.8;
}

.center-video {
  width: 100%;
  display: block;
}

.spacer-25 {
  height: 0.25em;
}

.contact {
  margin: 24px 0 8px;
  padding-top: 12px;
  text-align: center;
  font-size: 15px;
  border-top: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.75);
}

.contact a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}
