/* ========================
   CSS VARIABLES (BRAND)
======================== */
:root {
  --brand-primary: #5E3018;
  --brand-primary-dark: #3A1C0E;
  --brand-primary-light: #9B6A54;
  --brand-bg-light: #EFE7E2;
  --brand-accent: #C6A15B;

  --text-dark: #1E1E1E;
  --text-muted: #777;
}

/* ========================
   Base Styles
======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--brand-bg-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 35px 20px;
}

/* ========================
   Header & Navigation
======================== */
.site-header {
  background-color: #fff;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 60px;
  transition: height 0.3s ease;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--brand-primary-dark);
  transition: font-size 0.3s ease;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  padding: 0.5rem 1rem;
  display: block;
  font-weight: 500;
  color: var(--brand-primary);
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--brand-primary-dark);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #eee;
  display: none;
  list-style: none;
  min-width: 200px;
  z-index: 99;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #f1f1f1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  background-color: var(--brand-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========================
   Header Scroll Effect
======================== */
.site-header.shrink {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.site-header.shrink .logo-img {
  height: 45px;
}

.site-header.shrink .logo-text {
  font-size: 1.1rem;
}

/* ========================
   Section Titles
======================== */
.section-title {
  text-align: center;
  font-size: 28px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
  padding: 0;
}

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #444;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
  padding: 0;
}
/* ========================
   Hero Section
======================== */
.hero {
  position: relative;
  height: 450px;
  margin-top: 80px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%);
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.2rem;
}

/* ========================
   Regions Section
======================== */
.regions {
  text-align: center;
  margin-top: 5px;
}

.ghana-map-container {
  position: relative;
  display: inline-block;
  max-width: 700px;
}

.ghana-map {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ========================
   Map Pins
======================== */
.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #e63946;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -100%);
  transition: 0.2s;
}

.map-pin::after {
  content: attr(data-region);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
}

.map-pin:hover::after {
  opacity: 1;
}

.map-pin:hover {
  background-color: #f1c40f;
  transform: translate(-50%, -110%) scale(1.1);
}

/* Region Positions */
.head-office { top: 75%; left: 70%; }
.ashanti { top: 60%; left: 48%; }
.central { top: 80%; left: 50%; }
.brong { top: 50%; left: 42%; }
.eastern-volta { top: 60%; left: 80%; }
.western-north { top: 60%; left: 20%; }
.western-south { top: 75%; left: 25%; }

/* ========================
   Footer
======================== */
.site-footer {
  background: var(--brand-primary-dark);
  color: #E6D8CF;
  padding: 60px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 15px;
}

.footer-links h4,
.footer-right h4 {
  color: var(--brand-accent);
  margin-bottom: 15px;
}

.footer-links ul,
.footer-right ul {
  list-style: none;
}

.footer-links ul li,
.footer-right ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-right ul li a {
  color: #E6D8CF;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

/* ========================
   Region Details
======================== */
.region-details {
  text-align: center;
  padding: 100px 20px;
}

.region-title {
  font-size: 2rem;
  color: #5e3118;
}

.region-description {
  max-width: 700px;
  margin: auto;
}

.office-info,
.stations-list {
  margin-bottom: 30px;
}

.stations-list ul {
  list-style: none;
}

.stations-list li {
  background: #f3ebe4;
  padding: 10px;
  margin: 6px auto;
  max-width: 400px;
  border-radius: 8px;
}

/* ========================
   Region Info Box
======================== */
.region-info {
  background: #fff;
  max-width: 750px;
  margin: 0 auto 40px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ========================
   MOBILE RESPONSIVE
======================== */
@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    display: none;
    background: #fff;
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .ghana-map-container {
    width: 100%;
  }

  .region-info {
    padding: 20px;
  }
}