:root {
  --bg: #faf8f5;
  --text: #1f1a17;
  --muted: #6b625c;
  --border: #ded6cf;
  --card: #fffdfa;
  --accent: #7b2432;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Source Serif Pro", Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

.navbar {
  font-family: "Source Serif Pro", Georgia, "Times New Roman", serif;
}

.site-banner {
  height: 60px;
  width: auto;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.75);
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--accent);
}

.main-content {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.hero {
  padding: 3rem 0 2rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.2rem;
}

.lead {
  max-width: 820px;
  font-size: 1.3rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-outline-melodramatick {
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
}

.btn-outline-melodramatick:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.content-section {
  padding: 2rem 0;
}

.content-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.example-banner-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}


.example-banner {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
}

.example-card {
  display: block;
  height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.example-card-operatick {
  background: #ecdff2;
}

.example-card-balletick {
  background: #addde7;
}

.example-card-concertantick {
  background: #eee80e;
}

.example-card:hover {
  color: inherit;
  text-decoration: none;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.example-card h3 {
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.example-card p {
  margin-bottom: 1rem;
  color: var(--text);
}

.example-link {
  font-weight: 600;
  color: var(--accent);
}

.developer-links {
  padding-left: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}
