/* ===== MKC DIRE DAWA — GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&family=Ethiopic+Halehame+Am:wght@400&display=swap');

:root {
  --gold:      #C4972A;
  --gold-light:#E8C66A;
  --navy:      #1A2A4A;
  --cream:     #FAF7F2;
  --white:     #FFFFFF;
  --charcoal:  #2C2C2C;
  --mid-grey:  #6B7280;
  --border:    #DDD5C4;
  --red-accent:#8B1A1A;
  --shadow:    0 4px 24px rgba(26,42,74,0.10);
  --radius:    6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--charcoal); }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

.section-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: var(--cream); }
.section--navy h2, .section--navy h3 { color: var(--gold-light); }
.section--navy p  { color: #C8D0DD; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: linear-gradient(135deg, #E8E0D0 0%, #D4C9B0 100%);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  font-size: .9rem;
  font-family: 'Source Sans 3', sans-serif;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  overflow: hidden;
}
.img-placeholder:hover { border-color: var(--navy); background: linear-gradient(135deg, #DDD5C4 0%, #C8BA9E 100%); }
.img-placeholder svg { margin-bottom: .5rem; opacity: .5; }
.img-placeholder span { font-size: .78rem; opacity: .7; display: block; margin-top: .25rem; }
.img-placeholder--hero { width: 100%; height: 480px; border-radius: 0; }
.img-placeholder--card { width: 100%; height: 220px; }
.img-placeholder--tall { width: 100%; height: 380px; }
.img-placeholder--wide { width: 100%; height: 300px; }
.img-placeholder--small { width: 100%; height: 160px; }
.img-placeholder--avatar { width: 90px; height: 90px; border-radius: 50%; flex-shrink: 0; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  object-fit: cover;
  flex-shrink: 0;
}
.nav__name { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.2; }
.nav__name small { display: block; color: var(--gold-light); font-family: 'Source Sans 3', sans-serif; font-size: .72rem; letter-spacing: .06em; }

.nav__links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav__links a {
  display: block;
  padding: .5rem 1rem;
  color: #C8D0DD;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); background: rgba(196,151,42,.1); }
.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .5rem 1.25rem !important;
  border-radius: 4px !important;
  margin-left: .5rem;
}
.nav__cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.nav__hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

@media (max-width: 820px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .75rem 1rem; }
}

/* ===== GOLD DIVIDER ===== */
.gold-divider { width: 56px; height: 3px; background: var(--gold); margin: 1rem 0 1.5rem; border-radius: 2px; }
.gold-divider--center { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
}
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); color: var(--navy); }
.btn--outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--navy); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--cream); color: var(--navy); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: #0F1E3A; color: var(--white); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(26,42,74,.14); }
.card__body { padding: 1.5rem; }
.card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ===== HERO ===== */
/* ===== HERO — split layout: 2/3 image | 1/3 text panel ===== */
.hero {
  display: flex;
  min-height: 560px;
  overflow: hidden;
}
.hero__image-col {
  flex: 0 0 66.666%;
  position: relative;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* full opacity — no reduction */
}
.hero__text-col {
  flex: 0 0 33.333%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .06;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 2.5rem;
}
.hero__eyebrow { color: var(--gold-light); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; display: block; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
.hero p { color: #B8C4D8; font-size: 1rem; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero__image-col { flex: 0 0 auto; height: 280px; width: 100%; }
  .hero__text-col { flex: 0 0 auto; width: 100%; }
  .hero__content { padding: 2.5rem 1.5rem; }
}

/* ===== SECTION IMAGES (replace placeholders) ===== */
.section-img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}
.section-img--tall  { height: 380px; }
.section-img--card  { height: 220px; }
.section-img--wide  { height: 300px; }
.section-img--small { height: 160px; }
.section-img--avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/pattern-header-bg.svg");
}
.page-header__content { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: .5rem; }
.page-header__sub { color: var(--gold-light); font-size: 1.05rem; }
.breadcrumb { color: #8899BB; font-size: .85rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content:''; position:absolute; left:.9rem; top:0; bottom:0; width:2px; background:var(--border); }
.timeline__item { position: relative; margin-bottom: 2.5rem; }
.timeline__dot {
  position: absolute;
  left: -2.5rem;
  top: .25rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline__year { font-size: .8rem; font-weight: 700; color: var(--gold); letter-spacing: .08em; margin-bottom: .25rem; }
.timeline__title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem; }
.timeline__text { font-size: .95rem; color: var(--mid-grey); }

/* ===== SERVICE TIMES ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.service-card h4 { color: var(--navy); margin-bottom: .5rem; }
.service-card .time { font-size: 1.3rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.service-card .day { font-size: .85rem; color: var(--mid-grey); }

/* ===== STAT BOXES ===== */
.stat-box { text-align: center; padding: 2rem 1rem; }
.stat-box .number { font-size: 2.8rem; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--gold-light); line-height: 1; margin-bottom: .3rem; }
.stat-box .label { font-size: .9rem; color: #8899BB; }

/* ===== BANK DETAIL ===== */
.bank-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bank-card__header {
  background: var(--navy);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.bank-card__header h4 { color: var(--gold-light); margin: 0; font-size: 1rem; }
.bank-card__body { padding: 1.25rem 1.5rem; }
.bank-account { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.bank-account:last-child { border-bottom: none; }
.bank-account__name { font-size: .9rem; color: var(--mid-grey); }
.bank-account__num { font-family: monospace; font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: .05em; }
.copy-btn {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .25rem .6rem;
  font-size: .75rem;
  cursor: pointer;
  color: var(--mid-grey);
  transition: all .2s;
}
.copy-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.copy-btn.copied { background: #2E7D32; color: white; border-color: #2E7D32; }

/* ===== AMHARIC TEXT ===== */
.amh { font-size: 1.05rem; line-height: 1.9; color: var(--charcoal); }
.amh-label { font-size: .85rem; color: var(--gold); font-weight: 600; display: block; margin-bottom: .25rem; }

/* ===== PROGRESS BAR ===== */
.progress-wrap { margin-bottom: 1.5rem; }
.progress-label { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: .4rem; color: var(--mid-grey); }
.progress-bar { height: 10px; background: var(--border); border-radius: 9999px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 9999px; transition: width 1s ease; }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== FOOTER ===== */
.footer {
  background: #0D1A30;
  color: #8899BB;
  padding: 3.5rem 0 0;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; font-family: 'Playfair Display', serif; }
.footer p { font-size: .9rem; line-height: 1.7; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: .5rem; }
.footer__links a { color: #8899BB; font-size: .9rem; transition: color .2s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__contact a { color: #8899BB; font-size: .9rem; display: block; margin-bottom: .5rem; transition: color .2s; }
.footer__contact a:hover { color: var(--gold-light); }
.footer__contact svg { margin-right: .4rem; vertical-align: middle; flex-shrink: 0; }
.footer__social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: #8899BB;
  transition: background .2s, color .2s;
  font-size: .85rem;
}
.footer__social a:hover { background: var(--gold); color: var(--navy); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.flex { display: flex; align-items: center; }

/* cross icon svg style */
.cross-bg {
  position: absolute;
  opacity: .04;
  pointer-events: none;
}

/* ===== ALERT / NOTICE ===== */
.notice {
  background: linear-gradient(135deg, rgba(196,151,42,.12), rgba(196,151,42,.06));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.notice__icon { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.notice__text { font-size: .95rem; }
.notice__text strong { color: var(--navy); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ===== GOOGLE TRANSLATE WIDGET ===== */
.translate-widget {
  position: fixed;
  top: 79px; /* nav height (68px) + 3mm (~11px) below the menu */
  right: 18px;
  z-index: 1000;
  background: var(--white);
  border: 1px solid rgba(26,42,74,.15);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  padding: .35rem .6rem;
  line-height: 1;
}
/* Google injects a <select>/iframe here; keep it visually inline with our badge */
.translate-widget .goog-te-gadget { font-family: 'Source Sans 3', sans-serif !important; font-size: .8rem !important; color: var(--navy) !important; }
.translate-widget .goog-te-gadget img { vertical-align: middle; }
.translate-widget select.goog-te-combo { border-radius: 6px; padding: .15rem .3rem; }
@media (max-width: 640px) {
  .translate-widget { top: 79px; right: 12px; padding: .25rem .5rem; }
}

/* Prevent Google Translate's top banner iframe from pushing the whole page down */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; position: static !important; }
