:root {
  --green: #0D4A2F;
  --green-mid: #166B43;
  --green-light: #1E8A56;
  --green-bg: #EFF7F3;
  --gold: #C9952A;
  --gold-light: #E8B84B;
  --gold-bg: #FDF8EE;
  --red-ke: #BB1A1A;
  --cream: #F7F3ED;
  --warm-white: #FDFAF6;
  --slate: #2C3E50;
  --muted: #6B7280;
  --border: #E5DDD0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--slate); overflow-x: hidden; }

/* PUBLIC NAV */
.topnav {
  background: var(--green);
  padding: 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.topnav .navbar-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: #fff !important;
  font-size: 1.05rem;
  letter-spacing: .02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-coat { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.topnav .nav-link { color: rgba(255,255,255,.8) !important; font-size: .875rem; font-weight: 500; padding: .75rem 1rem !important; transition: color .2s; }
.topnav .nav-link:hover { color: var(--gold-light) !important; }
.topnav .btn-login { background: var(--gold); color: var(--green) !important; font-weight: 600 !important; border-radius: 6px; padding: .4rem 1.1rem !important; font-size: .85rem !important; }
.topnav .btn-login:hover { background: var(--gold-light); }
.lang-toggle { color: rgba(255,255,255,.6) !important; font-size: .75rem !important; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: .3rem .7rem !important; }

/* SECTION HEADERS */
.section-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green); margin-bottom: .5rem; }
.section-sub { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }

/* PUBLIC FOOTER */
footer {
  background: var(--green);
  color: rgba(255,255,255,.7);
  padding: 50px 0 30px;
  margin-top: 80px;
}
footer h5 { color: #fff; font-weight: 700; margin-bottom: 1rem; font-size: .95rem; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem; display: block; margin-bottom: .4rem; }
footer a:hover { color: var(--gold-light); }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; font-weight: 700; margin-bottom: .5rem; }
.footer-divider { border-color: rgba(255,255,255,.15); margin: 2rem 0 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: .5rem; }
.footer-flags { display: flex; gap: 6px; align-items: center; }
.flag-stripe { width: 20px; height: 8px; }

/* COMMON BADGES */
.project-badge, .p-badge { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 20px; display: inline-block; }
.badge-completed { background: #d4edda; color: #155724; }
.badge-ongoing { background: #cce5ff; color: #004085; }
.badge-stalled { background: #f8d7da; color: #721c24; }
.badge-planned { background: #fff3cd; color: #856404; }

/* PROGRESS BARS */
.prog-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
