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

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

:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --border: #e2dfd8;
  --text: #1a1a1a;
  --muted: #6b6860;
  --accent: #2d6a4f;
  --accent-light: #d8f3dc;
  --tag-bg: #eef2ff;
  --tag-text: #3730a3;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover { opacity: 0.8; }

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.logo {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  color: var(--accent);
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

nav a:hover, nav a.active { color: var(--text); }

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.35rem;
  margin-bottom: 1px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 4px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  margin: 0;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--accent-light);
  color: var(--accent);
}

.dropdown-menu a.active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
}

.page-hero {
  max-width: 720px;
  margin: 3.5rem auto 2.5rem;
  padding: 0 2rem;
}

.page-hero .section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

.section {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}

a.card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.about-band {
  background: var(--accent-light);
  border-top: 1px solid #b7e4c7;
  padding: 3rem 2rem;
  text-align: center;
}

.about-band p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #1b4332;
  line-height: 1.7;
}

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.25rem;
  }

  nav {
    width: 100%;
    justify-content: center;
  }
}
