/* Intangible Choir — site styles */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body, button, input, textarea, select {
  font-family: 'Raleway', sans-serif;
}

body {
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #c2421f; /* red */
  text-decoration: underline;
}

a:hover {
  color: #808080; /* grey on hover */
}

/* Header + nav */
header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  background-color: #000000;
  border: none;
  margin: 0;
  position: relative;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #b7bac1; /* grey */
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title a:hover {
  color: #c2421f;
}

nav {
  margin-top: 0;
}

nav a {
  margin: 0 0.75rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: #b7bac1;
}

nav a:hover,
nav a.active {
  color: #c2421f; /* red, matches the site's link hover color */
}

/* Hamburger menu button — hidden on wide screens */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #b7bac1;
}

@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  nav.open {
    display: flex;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }
}

/* Hero image — full width, edge to edge, no border */
.hero-image {
  width: 100%;
  display: block;
  margin: 0;
  border: none;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content sections */
.content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.content-wide {
  max-width: 960px;
}

.video-grid,
.video-item,
.video-wrapper {
  width: 100%;
}

.content section {
  margin-bottom: 2.5rem;
}

.content h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.content p {
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.content p b {
  font-weight: 400;
  text-transform: uppercase;
}

/* Music page */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem;
  margin-bottom: 2.5rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-color: #eeeeee;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-pdf-link {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.sheet-music-list {
  list-style: none;
}

.sheet-music-list li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* Wider screens */
@media (min-width: 700px) {
  .site-title {
    font-size: 2.2rem;
  }
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  margin-top: auto;
  background-color: #000000;
  color: #b7bac1;
}
