:root {
  --mpm-bg: #f9f7f1;
  --mpm-primary: #8b2918;
  --mpm-secondary: #1a4228;
  --mpm-accent: #ecb628;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--mpm-bg);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.font-display { font-family: "Playfair Display", "Times New Roman", serif; }

/* Navbar glass */
.nav-glass {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(249, 247, 241, 0.86);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Hero background overlay (index) */
.hero-bg {
  background-image:
    linear-gradient(to bottom right, rgba(26, 66, 40, 0.92), rgba(26, 66, 40, 0.75)),
    url("https://source.unsplash.com/featured/1600x900?argentina,forest,music");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Artists: grayscale -> color hover */
.artist-image {
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.artist-card:hover .artist-image {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* News cards */
.news-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}
.news-card-img { transition: transform 0.4s ease; }
.news-card:hover .news-card-img { transform: scale(1.05); }

/* Memory cards */
.memory-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
  background: #fdfbf4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.memory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.memory-image { transition: transform 0.4s ease; }
.memory-card:hover .memory-image { transform: scale(1.05); }
.memory-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
  opacity: 0;
  color: #f9f7f1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  transition: opacity 0.3s ease;
}
.memory-card:hover .memory-overlay { opacity: 1; }
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.play-icon-inner {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9f7f1;
  backdrop-filter: blur(4px);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 12px;
  background: #111827;
  color: #fff;
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }
