/* ============================================================
   TELEKI MUSIC — Global Stylesheet
   telekimusic.com
   System fonts only — no external dependencies
   ============================================================ */

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --burgundy:     #6B2737;
  --burgundy-dk:  #4A1A25;
  --burgundy-xdk: #2C1810;
  --gold:         #B8963E;
  --gold-lt:      #D4AF6A;
  --dark:         #1A1A1A;
  --mid:          #444444;
  --muted:        #666666;
  --light:        #F7F3EF;
  --border:       #DDD5CC;
  --white:        #FFFFFF;
  --green:        #1E8449;
  --radius:       8px;
  --radius-lg:    12px;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 6px 32px rgba(0,0,0,0.12);

  /* System font stacks — no Google Fonts needed */
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  'Trebuchet MS', Arial, Helvetica, sans-serif;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover { color: var(--gold); }

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 24px;
}

.gold-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-xl) 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.9);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
}

.text-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: bold;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link::after { content: ' →'; }
.text-link:hover { color: var(--gold); }

/* ── BADGES / PILLS ──────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 4px 11px;
  border-radius: 20px;
}
.badge-burgundy { background: #F0E0E4; color: var(--burgundy); }
.badge-gold     { background: #F5EDD8; color: #6B4A10; }
.badge-green    { background: #D5F5E3; color: #145A32; }
.badge-muted    { background: #EEEBE7; color: var(--muted); }

/* ── DONATION BANNER ─────────────────────────────────────── */
#donation-banner {
  background: var(--burgundy-xdk);
  padding: 11px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
#donation-banner.hidden { display: none; }

.donation-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.donation-text strong { color: var(--gold-lt); }

.donation-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.15s;
  flex-shrink: 0;
}
.donation-dismiss:hover { color: var(--white); }

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  background: var(--burgundy-dk);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.30);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 110px;
  width: auto;
}

.nav-logo-divider {
  width: 1px;
  height: 44px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

.nav-logo-tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--gold-lt);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-gold-bar {
  height: 3px;
  background: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.18s;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.22s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-lt);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Portal buttons */
.nav-portals {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 8px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.nav-portal-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.3px;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}

.nav-portal-student {
  border: 2px solid var(--gold);
  color: var(--gold-lt);
  background: transparent;
}
.nav-portal-student:hover {
  background: var(--gold);
  color: var(--white);
}

.nav-portal-member {
  border: 2px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.90);
  background: transparent;
}
.nav-portal-member:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--burgundy-xdk);
  min-height: 540px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--burgundy-xdk);
}

.hero-photo-placeholder p {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.30);
}

.hero-text {
  background: var(--burgundy);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: normal;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-title em {
  color: var(--gold-lt);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
  line-height: 1.5;
}

.hero-body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── PAGE BODY ───────────────────────────────────────────── */
.page-body {
  padding: var(--space-xl) 0;
}

/* ── NEWS SECTION ────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: var(--space-xl);
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  border-top: 4px solid var(--burgundy);
  transition: box-shadow 0.18s, transform 0.18s;
}
.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.news-card.featured {
  border-top-color: var(--gold);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.news-card-date {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--burgundy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.news-card-tagline {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
}

.news-card-body {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.news-card-image {
  background: var(--burgundy-xdk);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-image-placeholder {
  font-size: 52px;
  opacity: 0.12;
  color: var(--white);
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
  margin-bottom: var(--space-xl);
}

.about-intro-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: normal;
  color: var(--burgundy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.about-gold-rule {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 22px;
}

.about-body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--burgundy);
  padding: 18px 20px;
  transition: border-left-color 0.18s, box-shadow 0.18s;
}
.pillar-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow);
}

.pillar-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: bold;
  color: var(--burgundy);
  margin-bottom: 6px;
}

.pillar-body {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── MUSIC IN EVERY HOME ─────────────────────────────────── */
.mieh-section {
  background: var(--burgundy-xdk);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 48px;
  align-items: center;
}

.mieh-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 12px;
}

.mieh-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: normal;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.mieh-tagline {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.mieh-body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 28px;
}

.mieh-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mieh-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mieh-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184,150,62,0.18);
  border: 1px solid rgba(184,150,62,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mieh-pillar-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: bold;
  color: var(--gold-lt);
  margin-bottom: 3px;
}

.mieh-pillar-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.58);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--burgundy-xdk);
  margin-top: var(--space-xl);
}

.footer-gold-bar {
  height: 3px;
  background: var(--gold);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px var(--space-lg);
  max-width: 1040px;
  margin: 0 auto;
  gap: var(--space-md);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: rgba(255,255,255,0.90);
  margin-bottom: 6px;
}

.footer-brand-meta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 12px var(--space-lg) 24px;
  max-width: 1040px;
  margin: 0 auto;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .nav-portals { margin-left: 4px; padding-left: 12px; }
}

@media (max-width: 860px) {
  .nav-inner { height: 100px; }
  .nav-logo-img { height: 72px; }
  .nav-logo-tagline { display: none; }
  .nav-logo-divider { display: none; }
  .nav-portals { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 300px; }
  .hero-text { padding: 40px 32px; }
  .hero-title { font-size: 38px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; gap: 32px; }
  .mieh-section { grid-template-columns: 1fr; padding: 36px 28px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .container { padding: 0 24px; }
}
