/* ===== CSS VARIABLES ===== */
:root {
  --green: #078930;
  --yellow: #FCDD09;
  --red: #DA121A;
  --blue: #0F47AF;
  --dark: #0D1B12;
  --cream: #FDF8F0;
  --warm-gray: #F5F0E8;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --font-amharic: 'Noto Serif Ethiopic', serif;
  --nav-height: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== LANGUAGE TOGGLE ===== */
.lang-en .amh { display: none; }
.lang-am .eng { display: none; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--green); color: white;
  padding: 0.5rem 1rem; border-radius: 4px; font-weight: 700;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--green), #0a6e27, var(--green));
  color: white; text-align: center;
  padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em;
  position: relative; transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease; max-height: 60px; overflow: hidden;
}
.announcement-bar a { color: var(--yellow); text-decoration: underline; }
.announcement-bar.dismissed { max-height: 0; padding: 0; opacity: 0; pointer-events: none; }
.announcement-dismiss {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer;
  font-size: 1.1rem; padding: 0.25rem; line-height: 1; transition: var(--transition);
}
.announcement-dismiss:hover { color: white; transform: translateY(-50%) scale(1.2); }

/* ===== NAVIGATION ===== */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,248,240,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--green), var(--yellow), var(--red)) 1;
  height: var(--nav-height);
  display: flex; align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.1rem; color: var(--dark); line-height: 1.2;
}
.nav-logo-icon {
  width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; overflow: hidden;
}
.nav-logo-icon img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.nav-logo-star { color: white; font-size: 1.4rem; position: relative; z-index: 1; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.4rem 0.75rem; border-radius: 8px; font-weight: 600;
  font-size: 0.88rem; color: var(--text); transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { background: var(--warm-gray); color: var(--green); }
.nav-links a.active { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-lang {
  background: var(--warm-gray); border: none; cursor: pointer;
  padding: 0.35rem 0.75rem; border-radius: 20px; font-size: 0.8rem;
  font-weight: 700; font-family: var(--font-body);
  color: var(--text); transition: var(--transition);
}
.btn-lang:hover { background: var(--green); color: white; }
.btn-donate {
  background: linear-gradient(135deg, var(--red), #b50e14);
  color: white; border: none; cursor: pointer;
  padding: 0.5rem 1.25rem; border-radius: 25px;
  font-weight: 700; font-size: 0.88rem; font-family: var(--font-body);
  transition: var(--transition); white-space: nowrap;
}
.btn-donate:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(218,18,26,0.4); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--cream); padding: 1.5rem;
  border-bottom: 3px solid var(--green);
  box-shadow: var(--shadow-lg); z-index: 999;
  flex-direction: column; gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 1rem; border-radius: 8px;
  font-weight: 600; font-size: 1rem; color: var(--text);
  transition: var(--transition); border-left: 3px solid transparent;
}
.mobile-menu a:hover { background: var(--warm-gray); border-left-color: var(--green); color: var(--green); }
.mobile-menu-actions { display: flex; gap: 0.75rem; margin-top: 0.5rem; }

/* ===== HERO ===== */
#home {
  min-height: 92vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(160deg, #0D1B12 0%, #0a3520 40%, #0f2d1a 100%);
}
/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slideshow-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(13,27,18,0.82) 0%, rgba(10,53,32,0.72) 40%, rgba(15,45,26,0.78) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.08;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--yellow) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--green) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, var(--red) 0%, transparent 40%);
}
.hero-ethiopian-pattern {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    45deg, var(--yellow) 0px, var(--yellow) 2px,
    transparent 2px, transparent 20px
  ),
  repeating-linear-gradient(
    -45deg, var(--green) 0px, var(--green) 2px,
    transparent 2px, transparent 20px
  );
}
.hero-flag-strip {
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--green) 33%, var(--yellow) 33% 66%, var(--red) 66%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1280px;
  margin: 0 auto; padding: 6rem 1.5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-text {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(252,221,9,0.15); border: 1px solid rgba(252,221,9,0.3);
  color: var(--yellow); padding: 0.35rem 1rem; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--yellow); }
.hero-title-am {
  font-family: var(--font-amharic); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; color: white; line-height: 1.2;
  margin-bottom: 1.5rem; display: none;
}
.lang-am .hero-title { display: none; }
.lang-am .hero-title-am { display: block; }
.hero-desc {
  font-size: 1.15rem; color: rgba(255,255,255,0.8);
  max-width: 500px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--green), #0a7229);
  color: white; padding: 0.875rem 2rem; border-radius: 30px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(7,137,48,0.4); }
.btn-secondary {
  background: transparent; color: white;
  padding: 0.875rem 2rem; border-radius: 30px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.4); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--yellow); line-height: 1; display: inline-block;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-flag {
  width: 320px; height: 200px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  position: relative; transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
  transition: var(--transition);
}
.hero-flag:hover { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
.flag-green { background: #078930; height: 33.33%; }
.flag-yellow { background: #FCDD09; height: 33.33%; display: flex; align-items: center; justify-content: center; }
.flag-red { background: #DA121A; height: 33.33%; }
.flag-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: #0F47AF; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(15,71,175,0.6);
}
.flag-star { font-size: 2rem; color: var(--yellow); }
.hero-card {
  position: absolute; background: white; border-radius: var(--radius);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-card.card-1 { bottom: -1rem; left: -3rem; animation: float 4s ease-in-out infinite; }
.hero-card.card-2 { top: -1rem; right: -2rem; animation: float 4s ease-in-out infinite 2s; }
.hero-card-icon { font-size: 1.5rem; }
.hero-card-text { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.hero-card-sub { font-size: 0.7rem; color: var(--text-muted); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SECTION DEFAULTS ===== */
section { padding: 5rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; margin-bottom: 3rem; line-height: 1.8;
}

/* ===== FLAG DIVIDER ===== */
.flag-divider {
  height: 5px; width: 100%;
  background: linear-gradient(90deg, var(--green) 33%, var(--yellow) 33% 66%, var(--red) 66%);
}

/* ===== MISSION STRIP ===== */
.mission-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3520 100%);
  padding: 4rem 1.5rem; color: white; text-align: center;
}
.mission-strip-inner { max-width: 800px; margin: 0 auto; }
.mission-strip blockquote {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.4; color: white;
  position: relative; margin-bottom: 1.5rem;
}
.mission-strip blockquote::before {
  content: '"'; font-size: 6rem; color: var(--yellow); opacity: 0.3;
  position: absolute; top: -1.5rem; left: -1rem; line-height: 1;
  font-family: var(--font-display);
}
.mission-strip cite { color: var(--yellow); font-size: 0.9rem; font-weight: 600; font-style: normal; }

/* ===== QUICK LINKS ===== */
#quicklinks { background: var(--white); padding: 4rem 1.5rem; }
.quicklinks-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.quicklink-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  transition: var(--transition); cursor: pointer;
  border: 2px solid transparent; position: relative; overflow: hidden;
}
.quicklink-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; opacity: 0; transition: var(--transition);
}
.quicklink-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow); }
.quicklink-card:hover::before { opacity: 1; }
.quicklink-card.green::before { background: var(--green); }
.quicklink-card.yellow::before { background: var(--yellow); }
.quicklink-card.red::before { background: var(--red); }
.quicklink-card.blue::before { background: var(--blue); }
.quicklink-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.quicklink-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.quicklink-desc { font-size: 0.88rem; color: var(--text-muted); }

/* ===== ABOUT ===== */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-img-placeholder {
  background: linear-gradient(135deg, var(--green) 0%, #0a5e25 50%, var(--dark) 100%);
  border-radius: var(--radius-lg); height: 520px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.about-img-pattern {
  position: absolute; inset: 0; opacity: 0.1;
  background-image: repeating-linear-gradient(
    30deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 15px
  );
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--yellow); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.about-badge-text { font-size: 0.75rem; font-weight: 700; color: var(--dark); }
.values-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.value-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; background: white; border-radius: var(--radius);
  transition: var(--transition);
}
.value-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.value-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.value-icon.g { background: rgba(7,137,48,0.1); }
.value-icon.y { background: rgba(252,221,9,0.2); }
.value-icon.r { background: rgba(218,18,26,0.1); }
.value-title { font-weight: 700; margin-bottom: 0.25rem; }
.value-desc { font-size: 0.88rem; color: var(--text-muted); }

/* ===== LEADERSHIP ===== */
#leadership { background: var(--white); }
.leadership-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.leader-card {
  text-align: center; padding: 2rem 1rem;
  background: var(--cream); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.leader-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  background: linear-gradient(135deg, var(--green), #0a5e25);
  border: 4px solid white; box-shadow: 0 4px 16px rgba(7,137,48,0.3);
}
.leader-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.leader-role { font-size: 0.82rem; color: var(--green); font-weight: 600; }

/* ===== EVENTS ===== */
#events { background: var(--warm-gray); }
.events-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.event-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); margin-bottom: 1.5rem;
  display: flex;
}
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.event-date-block {
  min-width: 80px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 1.5rem 1rem;
  color: white; font-family: var(--font-display);
}
.event-date-block.green { background: var(--green); }
.event-date-block.red { background: var(--red); }
.event-date-block.yellow { background: var(--yellow); }
.event-date-block.yellow .event-month,
.event-date-block.yellow .event-day { color: var(--dark); }
.event-date-block.blue { background: var(--blue); }
.event-month { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.event-day { font-size: 2rem; font-weight: 900; line-height: 1; }
.event-body { padding: 1.25rem 1.5rem; flex: 1; }
.event-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; }
.event-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.event-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.event-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 20px; margin-top: 0.5rem;
}
.event-badge.cultural { background: rgba(7,137,48,0.1); color: var(--green); }
.event-badge.community { background: rgba(15,71,175,0.1); color: var(--blue); }
.sidebar-widget {
  background: white; border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow);
}
.widget-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 2px solid var(--warm-gray);
}
.holiday-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid var(--warm-gray); font-size: 0.88rem;
}
.holiday-item:last-child { border-bottom: none; }
.holiday-name { font-weight: 600; }
.holiday-date { color: var(--green); font-size: 0.8rem; font-weight: 700; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-input {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--warm-gray);
  border-radius: 10px; font-size: 0.9rem; font-family: var(--font-body);
  transition: var(--transition); background: var(--cream);
}
.form-input:focus { outline: none; border-color: var(--green); background: white; }

/* ===== CULTURE ===== */
#culture { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.culture-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.culture-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); background: white;
}
.culture-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.culture-card-header {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.culture-card-header.g { background: linear-gradient(135deg, rgba(7,137,48,0.15), rgba(7,137,48,0.05)); }
.culture-card-header.y { background: linear-gradient(135deg, rgba(252,221,9,0.3), rgba(252,221,9,0.1)); }
.culture-card-header.r { background: linear-gradient(135deg, rgba(218,18,26,0.15), rgba(218,18,26,0.05)); }
.culture-card-header.b { background: linear-gradient(135deg, rgba(15,71,175,0.15), rgba(15,71,175,0.05)); }
.culture-card-body { padding: 1.5rem; }
.culture-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.culture-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem; margin-top: 2rem;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  background: var(--warm-gray); position: relative;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 240px;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  position: relative;
}
.gallery-item.tall .gallery-placeholder { height: 500px; }
.gallery-item.wide .gallery-placeholder { height: 240px; }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0; transition: var(--transition); display: flex; align-items: flex-end;
  padding: 1rem; color: white; font-size: 0.85rem; font-weight: 600;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Image support for gallery items */
.gallery-item img {
  width: 100%; height: 240px; object-fit: cover; display: block;
}
.gallery-item.tall img { height: 500px; }
.gallery-item.wide img { height: 240px; }

/* Image support for culture card headers */
.culture-card-header img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; z-index: 0;
}
.culture-card-header span.culture-emoji {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.35); border-radius: 50%;
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; backdrop-filter: blur(4px);
}

/* Image support for about section */
.about-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; z-index: 0; border-radius: var(--radius-lg);
}

/* Hero image */
.hero-image {
  width: 100%; max-width: 480px; height: 560px; border-radius: var(--radius-lg);
  object-fit: cover; box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
  transition: var(--transition);
}
.hero-image:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

/* ===== PAGE HERO BANNER ===== */
.page-hero-banner {
  position: relative; overflow: hidden;
  min-height: 70vh; display: flex; align-items: flex-end;
  background-color: var(--dark);
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
/* Culture page still uses <img> inside the banner */
.page-hero-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero-banner::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.35) 100%);
}
.page-hero-banner .banner-content {
  position: relative; z-index: 2; padding: 3.5rem 2.5rem;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.page-hero-banner .banner-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem); color: white;
  line-height: 1.15; margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.page-hero-banner .banner-subtitle {
  font-size: 1.2rem; color: rgba(255,255,255,0.85);
  max-width: 560px; line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ===== RESOURCES ===== */
#resources { background: var(--dark); color: white; }
#resources .section-title { color: white; }
#resources .section-label { color: var(--yellow); }
#resources .section-desc { color: rgba(255,255,255,0.7); }
.resources-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.resource-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition);
}
.resource-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.resource-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.resource-card-title { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.75rem; color: white; }
.resource-list { display: flex; flex-direction: column; gap: 0.4rem; }
.resource-list li { font-size: 0.88rem; color: rgba(255,255,255,0.7); padding-left: 1rem; position: relative; }
.resource-list li::before { content: '→'; position: absolute; left: 0; color: var(--yellow); }
.resource-link { color: var(--yellow); font-size: 0.82rem; font-weight: 700; margin-top: 1rem; display: inline-block; }

/* ===== MEMBERSHIP ===== */
#membership { background: var(--white); }
.membership-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.membership-plans { display: flex; flex-direction: column; gap: 1rem; }
.plan-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  border: 2px solid transparent; transition: var(--transition); cursor: pointer;
  position: relative;
}
.plan-card.featured { border-color: var(--green); background: rgba(7,137,48,0.05); }
.plan-card:hover { border-color: var(--green); transform: translateX(4px); }
.plan-card.selected { border-color: var(--green); background: rgba(7,137,48,0.08); box-shadow: 0 0 0 3px rgba(7,137,48,0.15); }
.plan-card .plan-check {
  position: absolute; top: 1rem; right: 1rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: white;
  display: none; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900;
}
.plan-card.selected .plan-check { display: flex; }
.plan-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.plan-price { font-family: var(--font-display); font-weight: 900; color: var(--green); font-size: 1.3rem; }
.plan-features { font-size: 0.85rem; color: var(--text-muted); }
.plan-badge {
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; background: var(--green); color: white;
  padding: 0.2rem 0.6rem; border-radius: 10px;
}
.membership-form { background: var(--cream); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.form-select {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--warm-gray);
  border-radius: 10px; font-size: 0.9rem; font-family: var(--font-body);
  background: white; transition: var(--transition); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235A5A5A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-select:focus { outline: none; border-color: var(--green); }
.form-textarea {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--warm-gray);
  border-radius: 10px; font-size: 0.9rem; font-family: var(--font-body);
  transition: var(--transition); resize: vertical; min-height: 80px; background: white;
}
.form-textarea:focus { outline: none; border-color: var(--green); }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.75rem; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green); }
.checkbox-group label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
#contact { background: var(--warm-gray); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-icon.g { background: rgba(7,137,48,0.1); }
.contact-icon.y { background: rgba(252,221,9,0.2); }
.contact-icon.r { background: rgba(218,18,26,0.1); }
.contact-icon.b { background: rgba(15,71,175,0.1); }
.contact-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); }
.contact-value { font-weight: 600; margin-top: 0.15rem; }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.social-btn {
  background: white; border-radius: 10px; padding: 0.6rem 1rem;
  font-size: 0.82rem; font-weight: 700; transition: var(--transition);
  border: 2px solid var(--warm-gray); display: flex; align-items: center; gap: 0.4rem;
}
.social-btn:hover { border-color: var(--green); color: var(--green); }
.map-container {
  border-radius: var(--radius-lg); height: 300px;
  margin-top: 1.5rem; position: relative; overflow: hidden;
  border: 2px solid rgba(7,137,48,0.2);
}
.map-container iframe {
  width: 100%; height: 100%; display: block;
}
.map-placeholder {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-radius: var(--radius-lg); height: 250px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin-top: 1.5rem; position: relative; overflow: hidden;
  border: 2px solid rgba(7,137,48,0.2);
}
.map-label {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  background: white; padding: 0.4rem 1rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; box-shadow: var(--shadow);
}
.contact-form-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow);
}
.contact-form-title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 0.9rem; background: linear-gradient(135deg, var(--green), #0a6e27);
  color: white; border: none; border-radius: 30px; font-size: 1rem;
  font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: var(--transition);
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(7,137,48,0.4); }

/* ===== DONATION BANNER ===== */
.donation-banner {
  background: linear-gradient(135deg, var(--red), #b50e14, #8a0a10);
  padding: 4rem 1.5rem; text-align: center; color: white;
}
.donation-banner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; margin-bottom: 0.75rem; }
.donation-banner p { font-size: 1.05rem; opacity: 0.85; max-width: 600px; margin: 0 auto 2rem; }
.donation-amounts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.amount-btn {
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  color: white; padding: 0.6rem 1.5rem; border-radius: 25px;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.amount-btn:hover, .amount-btn.selected { background: white; color: var(--red); border-color: white; }
.btn-donate-main {
  background: var(--yellow); color: var(--dark);
  padding: 1rem 3rem; border: none; border-radius: 30px;
  font-weight: 900; font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  font-family: var(--font-body); display: inline-block;
}
.btn-donate-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.custom-amount-wrapper {
  display: none; margin-top: 1rem; justify-content: center; align-items: center; gap: 0.5rem;
}
.custom-amount-wrapper.visible { display: flex; }
.custom-amount-input {
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.4);
  color: white; padding: 0.6rem 1rem; border-radius: 25px;
  font-size: 1.1rem; font-weight: 700; font-family: var(--font-body);
  text-align: center; width: 140px; transition: var(--transition);
}
.custom-amount-input::placeholder { color: rgba(255,255,255,0.5); }
.custom-amount-input:focus { outline: none; border-color: white; background: rgba(255,255,255,0.25); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: white; padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.footer-logo-text { font-family: var(--font-display); font-weight: 900; font-size: 1rem; line-height: 1.2; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; color: white; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: white; border: none; cursor: pointer;
  font-size: 1.2rem; box-shadow: var(--shadow); transition: var(--transition);
  display: none; align-items: center; justify-content: center;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-2px); background: #0a6e27; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== FORM VALIDATION ===== */
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--red); background: rgba(218,18,26,0.03);
}
.form-input.success, .form-select.success, .form-textarea.success {
  border-color: var(--green); background: rgba(7,137,48,0.03);
}
.form-error-msg {
  font-size: 0.75rem; color: var(--red); font-weight: 600;
  margin-top: 0.2rem; display: none; align-items: center; gap: 0.3rem;
}
.form-error-msg.visible { display: flex; }
.btn-loading {
  position: relative; pointer-events: none; opacity: 0.8;
}
.btn-loading::after {
  content: ''; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%); animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ===== RSVP BUTTON ===== */
.event-rsvp {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--green); color: white;
  padding: 0.4rem 1rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; border: none;
  cursor: pointer; transition: var(--transition); margin-top: 0.5rem;
  font-family: var(--font-body);
}
.event-rsvp:hover { background: #0a6e27; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(7,137,48,0.3); }
.event-rsvp.rsvpd { background: rgba(7,137,48,0.12); color: var(--green); pointer-events: none; }

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; padding: 1.5rem;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal-content {
  background: white; border-radius: var(--radius-lg);
  max-width: 600px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  position: relative;
}
.modal-overlay.open .modal-content { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--warm-gray); border: none; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2;
}
.modal-close:hover { background: var(--red); color: white; }
.modal-header { padding: 2rem 2rem 1rem; border-bottom: 2px solid var(--warm-gray); }
.modal-header h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.modal-body { padding: 1.5rem 2rem 2rem; }
.modal-body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.modal-body h4 { font-family: var(--font-display); font-weight: 700; margin: 1.5rem 0 0.5rem; }

/* ===== GALLERY LIGHTBOX ===== */
.lightbox-content {
  background: var(--dark); border-radius: var(--radius-lg);
  max-width: 700px; width: 100%; overflow: hidden;
  text-align: center; position: relative;
}
.lightbox-visual {
  width: 100%; height: 400px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.lightbox-caption {
  padding: 1.5rem 2rem; color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  color: white; font-size: 1.2rem; cursor: pointer;
  transition: var(--transition); display: flex;
  align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  color: white; font-size: 1.2rem; cursor: pointer;
  transition: var(--transition); display: flex;
  align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--red); }

/* ===== DONATION CONFIRMATION MODAL ===== */
.donate-confirm { text-align: center; padding: 2.5rem 2rem; }
.donate-confirm-icon { font-size: 4rem; margin-bottom: 1rem; }
.donate-confirm h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem; margin-bottom: 0.75rem;
}
.donate-confirm p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.donate-confirm-amount {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 900; color: var(--green); margin-bottom: 1.5rem;
}
.donate-confirm-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-confirm-donate {
  background: linear-gradient(135deg, var(--green), #0a6e27);
  color: white; border: none; padding: 0.875rem 2rem;
  border-radius: 30px; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.btn-confirm-donate:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(7,137,48,0.4); }
.btn-cancel {
  background: var(--warm-gray); color: var(--text);
  border: none; padding: 0.875rem 2rem; border-radius: 30px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.btn-cancel:hover { background: #e8e3db; }

/* ===== TOAST ===== */
#toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--green); color: white; padding: 1rem 2rem; border-radius: 30px; font-weight: 700; box-shadow: var(--shadow-lg); z-index: 9999; transition: transform 0.3s ease; display: none; }
#toast.toast-error { background: var(--red); }
#toast.toast-success { background: var(--green); }

/* ===== DARK MODE TOGGLE BUTTON ===== */
.dark-mode-toggle {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 600;
  width: 48px; height: 48px; border-radius: 50%;
  background: #222; color: #FCDD09; border: 2px solid #333;
  cursor: pointer; font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.dark-mode-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
body.dark-mode .dark-mode-toggle { background: #fdf8f0; color: #1a1a1a; border-color: #ddd; }

/* ===== FOCUS STYLES ===== */
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: block; }
  .about-img-placeholder { height: 350px; }
  .events-layout { grid-template-columns: 1fr; }
  .membership-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-hero-banner { min-height: 50vh; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1rem; }
  .hero-content { padding: 4rem 1rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall .gallery-placeholder { height: 240px; }
  .gallery-item.tall img { height: 240px; }
  .page-hero-banner { min-height: 40vh; }
  .form-grid, .contact-form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .donation-amounts { flex-direction: row; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img, .gallery-item.tall img, .gallery-item.wide img { height: 220px; }
  .page-hero-banner { min-height: 35vh; }
  .page-hero-banner .banner-title { font-size: 1.8rem; }
}

/* ===== EVENTS TOGGLE BUTTON ===== */
.events-toggle-btn {
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}
.events-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(7, 137, 48, .35);
}

/* ===== UPCOMING HOLIDAYS WIDGET (Culture page) ===== */
.upcoming-holidays-strip {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.upcoming-holidays-strip h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--dark);
}
.upcoming-holidays-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.upcoming-holiday-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
  overflow: hidden;
  flex: 1 1 280px;
  max-width: 360px;
  transition: transform .25s, box-shadow .25s;
}
.upcoming-holiday-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}
.upcoming-holiday-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.2rem;
  color: #fff;
  min-width: 72px;
}
.upcoming-month {
  font-size: .85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .05em;
}
.upcoming-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.upcoming-holiday-info {
  padding: .8rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .15rem;
}
.upcoming-holiday-emoji {
  font-size: 1.3rem;
}
.upcoming-holiday-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.upcoming-holiday-amharic {
  font-size: .85rem;
  color: #666;
}
.upcoming-holiday-countdown {
  font-size: .8rem;
  color: var(--green);
  font-weight: 600;
  margin-top: .2rem;
}

/* ===== ፊደል ጨዋታ — FIDEL GAME ===== */

/* Screen switching */
.game-screen { display: none; }
.game-screen.active { display: block; }

/* Hub Layout */
.hub-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.hub-stats-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  padding: 2rem;
  text-align: center;
  width: 100%;
  max-width: 480px;
}
.hub-rank-badge {
  font-family: var(--font-amharic);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}
.hub-rank-title {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hub-stats-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.hub-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}
.hub-stat-label {
  font-size: .78rem;
  color: var(--text-muted);
}

/* Category Grid */
.hub-categories { width: 100%; text-align: center; }
.hub-categories h3 { margin-bottom: 1rem; font-family: var(--font-display); font-weight: 800; }
.hub-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.hub-cat-btn {
  background: var(--white);
  border: 2px solid #eee;
  border-radius: 14px;
  padding: 1.2rem .8rem;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.hub-cat-btn:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(7,137,48,.12); }
.hub-cat-btn.active { border-color: var(--green); background: rgba(7,137,48,.06); }
.hub-cat-icon { font-size: 2rem; }
.hub-cat-name { font-weight: 700; font-size: .95rem; color: var(--dark); }
.hub-cat-sub { font-size: .72rem; color: var(--text-muted); font-family: var(--font-amharic); }

/* Start / Action Buttons */
.game-start-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 18px rgba(7,137,48,.3);
}
.game-start-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(7,137,48,.4); }
.game-secondary-btn {
  background: var(--white);
  color: var(--dark);
  border: 2px solid #ddd;
  padding: .7rem 1.5rem;
  font-size: .95rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all .2s;
}
.game-secondary-btn:hover { border-color: var(--green); color: var(--green); }

/* HUD */
.game-hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.1rem;
}
.hud-lives { font-size: 1.4rem; letter-spacing: .15em; }

/* Timer */
.game-timer-track {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.game-timer-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
  border-radius: 3px;
  width: 100%;
}

/* Prompt */
.game-prompt {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  color: var(--dark);
}

/* Arena */
.game-arena {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  min-height: 350px;
  position: relative;
}
.game-char-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.game-char-target {
  font-family: var(--font-amharic);
  font-size: 5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  user-select: none;
}
.game-char-hint {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Canvas */
#drawCanvas {
  border: 3px dashed var(--green);
  border-radius: 16px;
  background: rgba(7,137,48,.03);
  cursor: crosshair;
  touch-action: none;
  max-width: 100%;
}

/* Choices */
.game-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  width: 100%;
  max-width: 420px;
}
.game-choice-btn {
  background: var(--white);
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.game-choice-btn:hover { border-color: var(--green); background: rgba(7,137,48,.05); transform: scale(1.03); }
.game-choice-fidel { font-family: var(--font-amharic); font-size: 1.8rem; }

/* Actions */
.game-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.game-submit-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: .8rem 2rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: all .2s;
}
.game-submit-btn:hover { box-shadow: 0 4px 14px rgba(7,137,48,.35); }
.game-clear-btn {
  background: #fff;
  color: var(--red);
  border: 2px solid var(--red);
  padding: .8rem 1.5rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: all .2s;
}
.game-clear-btn:hover { background: var(--red); color: #fff; }

/* Feedback */
.game-feedback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  z-index: 10;
  color: #fff;
}
.game-feedback.success { background: rgba(7,137,48,.92); }
.game-feedback.fail { background: rgba(218,18,26,.88); }
.game-feedback-icon { font-size: 4rem; font-weight: 900; color: #fff; }
.game-feedback-text { font-size: 1.4rem; font-weight: 800; margin-top: .5rem; color: #fff; }

/* Game Over */
.gameover-card {
  max-width: 440px;
  margin: 3rem auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  padding: 3rem 2rem;
  text-align: center;
}
.gameover-icon { font-size: 3rem; margin-bottom: .5rem; }
.gameover-card h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.gameover-score { font-size: 2.5rem; font-weight: 900; color: var(--green); }
.gameover-round { font-size: 1rem; color: var(--text-muted); margin: .5rem 0; }
.gameover-best { font-size: .9rem; color: var(--text-muted); margin-bottom: 2rem; }
.gameover-actions { display: flex; flex-direction: column; gap: .8rem; align-items: center; }

/* ── FIDEL CHART ── */
.fidel-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.fidel-header h2 { font-family: var(--font-display); font-size: 1.4rem; flex: 1; }
.fidel-legend { display: flex; gap: 1rem; flex-wrap: wrap; }
.fidel-legend-item { display: flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--text-muted); }
.fidel-swatch { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }

.fidel-chart-grid {
  overflow-x: auto;
  padding-bottom: 1rem;
}
.fidel-chart-row {
  display: grid;
  grid-template-columns: 40px repeat(7, 1fr);
  gap: 2px;
  min-width: 500px;
}
.fidel-chart-header { font-weight: 700; color: var(--text-muted); font-size: .8rem; }
.fidel-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .4rem;
  font-family: var(--font-amharic);
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all .15s;
  min-height: 36px;
  user-select: none;
}
.fidel-cell:hover { transform: scale(1.15); z-index: 2; box-shadow: 0 2px 10px rgba(0,0,0,.15); }
.fidel-label { font-family: var(--font-body); font-weight: 700; color: var(--text-muted); font-size: .75rem; cursor: default; }
.fidel-order { font-family: var(--font-body); cursor: default; }
.fidel-cell.unseen { background: #e8e8e8; color: #999; }
.fidel-cell.attempted { background: rgba(218,18,26,.2); color: var(--red); font-weight: 700; }
.fidel-cell.learning { background: rgba(252,221,9,.3); color: #8a7600; font-weight: 700; }
.fidel-cell.mastered { background: rgba(7,137,48,.2); color: var(--green); font-weight: 700; }

/* Popup */
.fidel-popup {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
  padding: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  min-width: 220px;
}
.fidel-popup-char { font-family: var(--font-amharic); font-size: 4rem; font-weight: 700; color: var(--dark); }
.fidel-popup-sound { font-size: 1.2rem; color: var(--text-muted); font-weight: 600; }
.fidel-popup-stats { font-size: .9rem; color: var(--dark); line-height: 1.8; text-align: left; width: 100%; }
.fidel-popup-close {
  position: absolute;
  top: .8rem; right: .8rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
}
.fidel-popup-speak {
  background: var(--green);
  color: #fff;
  border: none;
  padding: .5rem 1.2rem;
  border-radius: 24px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  margin-top: .3rem;
}
.fidel-popup-speak:hover {
  background: #0a6e27;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(7,137,48,.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hub-stats-row { gap: 1.5rem; }
  .hub-cat-grid { grid-template-columns: 1fr 1fr; }
  .game-char-target { font-size: 3.5rem; }
  #drawCanvas { width: 260px; height: 260px; }
  .game-choices { grid-template-columns: 1fr 1fr; }
  .fidel-cell { font-size: .9rem; padding: .3rem; }
}

/* ===== ABOUT PAGE ===== */
.about-hero-banner {
  background: linear-gradient(135deg, #078930 0%, #0a6e27 40%, #054d1a 100%);
  min-height: 280px;
}
.about-section { padding: 4rem 1.5rem; }
.about-section-alt { background: var(--cream-dark, #f5efe5); }
.about-content-block { max-width: 800px; margin: 0 auto; text-align: center; }
.about-content-block p { font-size: 1.05rem; line-height: 1.85; color: var(--text); margin-bottom: 1.25rem; }
.about-pdf-btn {
  display: inline-block; padding: .75rem 1.75rem; margin-top: 1rem;
  background: var(--green); color: #fff; border-radius: 30px; font-weight: 700;
  text-decoration: none; transition: all .25s;
}
.about-pdf-btn:hover { background: #0a6e27; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(7,137,48,.25); }

/* Mission & Vision cards */
.about-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.about-mv-card {
  background: #fff; border-radius: 16px; padding: 2.5rem 2rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
}
.about-mv-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.about-mv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.about-mv-title { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: .75rem; color: var(--green); }
.about-mv-card p { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

/* Core Values */
.about-values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; max-width: 900px; margin: 2rem auto 0; }
.about-value-card {
  background: #fff; border-radius: 14px; padding: 2rem 1rem; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s;
}
.about-value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.about-value-icon { font-size: 2rem; margin-bottom: .75rem; }
.about-value-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); }

/* Board of Directors */
.about-board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 2rem auto 0; }
.about-board-card {
  background: #fff; border-radius: 16px; padding: 1.75rem 1.25rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
}
.about-board-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0,0,0,.12); }
.about-board-photo {
  width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem;
  border: 3px solid var(--green); background: #eee;
}
.about-board-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-board-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; color: var(--text); }
.about-board-role { font-size: .88rem; color: var(--green); font-weight: 600; }
.about-board-tagline { text-align: center; margin-top: 2rem; font-size: 1rem; color: var(--text-muted); font-style: italic; }

/* Bylaws Section */
.about-bylaws-subtitle { text-align: center; font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-bylaws-intro { max-width: 800px; margin: 0 auto 2rem; text-align: center; }
.about-bylaws-intro p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); }
.about-bylaws-accordion { max-width: 800px; margin: 0 auto; }
.bylaw-item { margin-bottom: .75rem; }
.bylaw-header {
  width: 100%; display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem;
  background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 12px;
  cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--text);
  transition: all .2s; text-align: left;
}
.bylaw-header:hover { border-color: var(--green); box-shadow: 0 2px 10px rgba(7,137,48,.1); }
.bylaw-header[aria-expanded="true"] { border-color: var(--green); background: rgba(7,137,48,.04); border-radius: 12px 12px 0 0; }
.bylaw-icon { font-size: 1.25rem; flex-shrink: 0; }
.bylaw-chevron { margin-left: auto; font-size: 1.1rem; color: var(--text-muted); transition: transform .2s; }
.bylaw-body {
  padding: 1.25rem 1.5rem; background: #fff; border: 1px solid rgba(0,0,0,.08); border-top: none;
  border-radius: 0 0 12px 12px;
}
.bylaw-body p { font-size: .95rem; line-height: 1.85; color: var(--text); }
.about-bylaws-footer { text-align: center; margin-top: 2.5rem; }
.about-bylaws-footer p { font-size: .95rem; color: var(--text-muted); margin-bottom: 1rem; }

/* About page responsive */
@media (max-width: 768px) {
  .about-mv-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
  .about-board-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .about-section { padding: 3rem 1rem; }
}
@media (max-width: 480px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-board-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-board-photo { width: 80px; height: 80px; }
}

/* ===== PRINT STYLES ===== */
@media print {
  nav, .announcement-bar, .scroll-top, .mobile-menu, .modal-overlay, #toast { display: none !important; }
  section { padding: 2rem 0; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
