@font-face {
  font-display: swap;
  font-family: "Sonj Marina";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/sonjmarina-regular.woff2") format("woff2"),
    url("assets/fonts/sonjmarina-regular.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Sonj Marina Display";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/sonjmarina-display.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Sonj Marina Accent";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/sonjmarina-accent.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sonj Marina", "Times New Roman", Times, serif;
  color: #1a1a1a;
  background: #f4edf1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 80vh;
  background: #f1e6eb;
  display: flex;
  align-items: flex-start;
  padding-top: 3rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero__video--active {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__title {
  font-family: "Sonj Marina Display", "Sonj Marina", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.02em;
}

.hero__nav {
  display: flex;
  gap: 1.5rem;
  font-size: 1.05rem;
}

.hero__nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
}

.hero__nav a:hover,
.hero__nav a:focus-visible {
  border-bottom-color: #1a1a1a;
}

/* Newsletter Page Styles */
.newsletter-page {
  background-image: url("assets/newsletter-header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.newsletter-nav {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  gap: 1.5rem;
  font-size: 1.05rem;
  z-index: 10;
}

.newsletter-nav a {
  color: #1a1a1a;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
  text-decoration: none;
}

.newsletter-nav a:hover,
.newsletter-nav a:focus-visible {
  border-bottom-color: #1a1a1a;
}

.newsletter-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.newsletter-content {
  max-width: 500px;
  margin-left: 12%;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.newsletter-title {
  font-family: 'Alice', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1rem 0;
  color: #1a1a1a;
  line-height: 1.2;
}

.section {
  padding: 4rem 0;
}

.section--live {
  background: rgb(246, 202, 211);
}

.section__content {
  display: grid;
  gap: 1.5rem;
  text-align: center;
  justify-items: center;
}

.section__label {
  font-family: "Sonj Marina Accent", "Sonj Marina", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  text-transform: lowercase;
  letter-spacing: 0.25em;
  font-size: 0.9rem;
}

.section__title {
  font-family: "Sonj Marina Accent", "Sonj Marina", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section--music .section__title {
  font-size: clamp(2.5rem, 4.5vw, 3.4rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  font-size: 0.95rem;
}

.button:hover,
.button:focus-visible {
  background: #1a1a1a;
  color: #fefefe;
}

.video {
  width: min(720px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.live-list {
  display: grid;
  gap: 0.75rem;
  font-size: 1.05rem;
  width: 100%;
  max-width: 600px;
}

.live-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  padding-bottom: 0.75rem;
}

.live-row a {
  text-decoration: underline;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 1.05rem;
  justify-content: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.7;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.contact-email {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.newsletter__description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 0 2rem 0;
  color: #1a1a1a;
}

.newsletter__form {
  display: grid;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0;
  width: 100%;
}

.newsletter__field {
  display: grid;
  gap: 0.5rem;
}

.newsletter__label {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.newsletter__input {
  padding: 0.75rem 1rem;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s;
}

.newsletter__input:focus {
  outline: none;
  border-color: #666;
}

.newsletter__input::placeholder {
  color: #999;
}

.newsletter__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.newsletter__message {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.5rem;
}

.newsletter__message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #4caf50;
}

.newsletter__message--error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #f44336;
}

.footer {
  padding: 2.5rem 0 3rem;
  background: #f1e6eb;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.footer__button {
  border: 1px solid #1a1a1a;
  background: transparent;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.footer__button:hover,
.footer__button:focus-visible {
  background: #1a1a1a;
  color: #fefefe;
}

@media (max-width: 720px) {
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .live-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-nav {
    top: 1rem;
    right: 1rem;
    gap: 1rem;
    font-size: 0.95rem;
  }

  .newsletter-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .newsletter-title {
    font-size: 2rem;
  }
}
