/* ============================================================
   OCCIMA — Shared Stylesheet
   Owerri Chamber of Commerce, Industry, Mines & Agriculture
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

/* ── DESIGN TOKENS ── */
:root {
  --gold: #C9A84C;
  --gold-deep: #8B6914;
  --gold-light: #E8D08A;
  --black: #111111;
  --dark: #1C1C1C;
  --dark2: #2A2A2A;
  --cream: #F8F4EA;
  --cream2: #F0EAD8;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  padding: 7px 0;
  letter-spacing: 0.03em;
}

.topbar .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: var(--gold);
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar .socials {
  display: flex;
  gap: 14px;
}

.topbar .socials a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  transition: color 0.2s;
  text-decoration: none;
}

.topbar .socials a:hover {
  color: var(--gold);
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .abbr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.05em;
}

.nav-logo-text .full {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 220px;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 18px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-deep) !important;
  color: var(--white) !important;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--black);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-menu {
    transition: transform 0.3s ease;
  }
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold-light);
}

.mobile-menu .mobile-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* ── FOOTER ── */
footer {
  background: #0A0A0A;
  padding: 72px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.footer-brand .tagline {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact .ic {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 1px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ── UTILITY CLASSES ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--gold);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid rgba(0, 0, 0, 0.25);
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

section {
  padding: 90px 0;
}

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--black);
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='25' fill='none' stroke='%23C9A84C' stroke-width='4'/%3E%3Ccircle cx='60' cy='60' r='15' fill='none' stroke='%23C9A84C' stroke-width='2'/%3E%3Crect x='56' y='20' width='8' height='16' rx='2' fill='%23C9A84C'/%3E%3Crect x='56' y='84' width='8' height='16' rx='2' fill='%23C9A84C'/%3E%3Crect x='20' y='56' width='16' height='8' rx='2' fill='%23C9A84C'/%3E%3Crect x='84' y='56' width='16' height='8' rx='2' fill='%23C9A84C'/%3E%3Crect x='30' y='28' width='8' height='14' rx='2' transform='rotate(45 34 35)' fill='%23C9A84C'/%3E%3Crect x='82' y='78' width='8' height='14' rx='2' transform='rotate(45 86 85)' fill='%23C9A84C'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.page-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 16px;
}

.page-hero .hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ── FOCUS STATES ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── RESPONSIVE: 1024px ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .container {
    padding: 0 24px;
  }

  .topbar .inner {
    padding: 0 24px;
  }
}

/* ── RESPONSIVE: 768px ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-logo-text .full {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .page-hero {
    height: auto;
    min-height: 260px;
    padding: 48px 0;
  }

  section {
    padding: 64px 0;
  }
}

/* ── RESPONSIVE: 480px ── */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .topbar .inner {
    padding: 0 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .footer-bottom {
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .page-hero-content {
    padding: 0 20px;
  }

  .btn-primary,
  .btn-outline,
  .btn-outline-dark {
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  section {
    padding: 48px 0;
  }
}
