/* ── PROBAKER GHANA — SHARED STYLES ─────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --blue:        #1A4F8A;
  --green:       #2E8B57;
  --green-light: #3AA86A;
  --brown:       #3B1F0A;
  --amber:       #C97B2E;
  --gold:        #E8A63A;
  --cream:       #F4F8F5;
  --white:       #FFFFFF;
  --text:        #0D2B1A;
  --muted:       #4A6B5A;
  --border:      #C2D8CC;
  --nav-h:       120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  padding-top: var(--nav-h);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--blue);
  line-height: 1.25;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── NAV ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(26,79,138,0.10);
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 120px; }
.nav-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--blue);
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0.02em;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.25s;
}
.nav-links a:hover        { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active        { color: var(--blue); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px; border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover  { background: var(--green) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--blue); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 1.5rem 5%; z-index: 999;
  flex-direction: column; gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500;
  color: var(--muted); padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--blue); font-weight: 600; }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  padding: 3.5rem 5%; text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); }
.page-hero p  { color: rgba(255,255,255,0.85); margin-top: 0.75rem; font-size: 1rem; }
.page-hero .gold-line {
  width: 48px; height: 3px;
  background: var(--gold); border-radius: 2px; margin: 1rem auto 0;
}

/* ── LAYOUT ──────────────────────────────────────── */
section.page-body { padding: 4rem 5%; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.6rem,3.5vw,2.4rem); margin-bottom: 0.75rem; }
.divider {
  width: 48px; height: 3px;
  background: var(--green); border-radius: 2px; margin-bottom: 1.75rem;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue); color: var(--white);
  padding: 12px 26px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--blue);
  padding: 12px 26px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--blue); cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--blue); padding: 3rem 5% 2rem; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand img   { height: 70px; margin-bottom: 0.75rem; }
.footer-brand span  { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--white); display:block; }
.footer-brand p     { font-size:0.85rem; color:rgba(255,255,255,0.55); margin-top:0.5rem; }
.footer-col h4      { font-size:0.8rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--gold); margin-bottom:1rem; }
.footer-col a       { display:block; font-size:0.85rem; color:rgba(255,255,255,0.6); margin-bottom:0.5rem; transition:color 0.2s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom {
  max-width:1100px; margin:1.5rem auto 0;
  display:flex; justify-content:space-between;
  font-size:0.8rem; color:rgba(255,255,255,0.4);
  flex-wrap:wrap; gap:0.5rem;
}

/* ── WHATSAPP FLOAT ──────────────────────────────── */
.wa-float {
  position:fixed; bottom:1.5rem; right:1.5rem;
  width:54px; height:54px; background:#25D366;
  border-radius:50%; display:flex; align-items:center;
  justify-content:center; font-size:1.5rem; z-index:900;
  box-shadow:0 4px 16px rgba(37,211,102,0.4);
  transition:transform 0.2s;
}
.wa-float:hover { transform:scale(1.1); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
