/* ==========================================================================
   Grains of Sand — bandsite
   Kleuren en fonts hieronder aanpassen om de hele site te herstijlen.
   ========================================================================== */

:root {
  --cream: #f4eee0;
  --cream-light: #faf6ec;
  --sand: #e0c68c;
  --brown-dark: #3a2618;
  --brown: #6b4a2e;
  --rust: #8a3b24;
  --green: #5b6b3f;
  --text: #3a2618;
  --text-muted: #6b5d4f;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 0.5em;
  color: var(--brown-dark);
}

a {
  color: var(--rust);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Header / navigatie ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream-light);
  border-bottom: 1px solid rgba(58, 38, 24, 0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--brown-dark);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--rust);
}

/* ---- Hero ---- */

.hero {
  position: relative;
  aspect-ratio: 2400 / 704;
  max-height: 55vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, #2a1c11 0%, #4a2e1c 55%, #6b4a2e 100%);
  background-image: url("images/band-photo.jpg");
  background-size: cover;
  background-position: center;
  color: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 6, 0.05) 0%, rgba(20, 12, 6, 0.35) 65%, rgba(20, 12, 6, 0.6) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 0.5rem;
}

.photo-credit {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.75;
}

.hero-title {
  margin: 0;
}

.hero-title span {
  display: inline-block;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(3.4rem, 9.5vw, 6.5rem);
  letter-spacing: 1.5px;
  color: var(--sand);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* ---- Secties ---- */

section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--cream);
}

.bio p {
  max-width: 65ch;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--rust);
  border: none;
  margin: 0 0 2rem;
}

/* ---- Contact / booking ---- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.98rem;
}

.contact-card a:hover {
  color: var(--rust);
}

.socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.socials a {
  border: 1px solid var(--brown);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--brown);
  text-decoration: none;
}

.socials a:hover {
  background: var(--brown);
  color: var(--cream);
}

/* ---- Muziekpagina ---- */

.page-header {
  padding: 3rem 0 2rem;
  background: var(--cream);
  text-align: left;
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.clip-card {
  background: var(--cream);
  border: 1px solid rgba(58, 38, 24, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.clip-card .embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--brown-dark);
}

.clip-card .embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.clip-card .clip-info {
  padding: 1rem 1.25rem;
}

.clip-card .clip-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.clip-card .clip-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.streaming-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(58, 38, 24, 0.12);
}

.streaming-links .link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.streaming-links a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--brown);
  border-radius: 999px;
  color: var(--brown-dark);
  text-decoration: none;
  font-size: 0.92rem;
}

.streaming-links a:hover {
  background: var(--brown);
  color: var(--cream);
}

/* ---- Footer ---- */

.site-footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--cream);
}

@media (max-width: 640px) {
  .site-header .container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .main-nav {
    gap: 1rem;
  }

  .hero .container {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
  }

  .hero-title span {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }
}
