/* ============================================================
   PRINCHIPEH — main.css (global styles)
   ============================================================ */

:root {
  --navy:     #0D1B2A;
  --burgundy: #6B2737;
  --amber:    #E8A838;
  --cream:    #FDF6EC;
  --charcoal: #2D2D2D;
  --offwhite: #F8F8F8;
  --white:    #FFFFFF;

  --neutral-50:  #F7F8F9;
  --neutral-100: #E7EAEE;
  --neutral-200: #D0D5DD;
  --neutral-300: #B8C0CC;
  --neutral-400: #A0ABBB;
  --neutral-500: #64748B;
  --neutral-600: #4B5768;
  --neutral-700: #323A46;
  --neutral-800: #191D23;
  --neutral-900: #0D0F11;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
}

img { display: block; width: 100%; object-fit: cover; }

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

/* ── Utility ── */
.section-padding { padding: 96px 64px; }

.eyebrow {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #d4942a;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}

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

.nav-links a.nav-cta {
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-links a.nav-cta:hover { background: #d4942a; color: var(--navy); }

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.mobile-menu-close:hover { transform: rotate(90deg); }

.mobile-menu-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}

.mobile-menu-close:hover span { background: var(--white); }
.mobile-menu-close span:first-child { transform: rotate(45deg); }
.mobile-menu-close span:last-child { transform: rotate(-45deg); }

.mobile-menu-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-links li a {
  display: block;
  padding: 16px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu-links li a:hover {
  color: var(--amber);
}

.mobile-menu-links li a.nav-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  margin-top: 24px;
  transition: background 0.2s;
}

.mobile-menu-links li a.nav-cta:hover {
  background: #d4942a;
  color: var(--navy);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/pkfrimpong-mainpage.png');
  background-size: cover;
  background-position: 75% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.70);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 64px;
}

.hero-eyebrow { color: var(--amber); margin-bottom: 20px; }

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 72px 64px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--amber);
  transition: color 0.2s;
}

.footer-contact a:hover { color: #d4942a; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.social-links a:hover { color: var(--amber); }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.contact-modal.open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-modal-content {
  position: relative;
  z-index: 1;
  text-align: center;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  padding: 40px;
}

.contact-modal.open .contact-modal-content {
  transform: translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 32px;
  right: 40px;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.contact-modal-close:hover { transform: rotate(90deg); }

.contact-modal-close span {
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.5);
  position: absolute;
  transition: background 0.2s;
}

.contact-modal-close:hover span { background: var(--white); }
.contact-modal-close span:first-child { transform: rotate(45deg); }
.contact-modal-close span:last-child { transform: rotate(-45deg); }

.contact-modal-eyebrow {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.contact-modal-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-modal-sub {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  line-height: 1.7;
}

.contact-modal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-modal-link {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-modal-link:hover { color: var(--amber); }

.contact-modal-link-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.contact-modal-social {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.contact-modal-social a {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.contact-modal-social a:hover { color: var(--amber); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section-padding { padding: 64px 24px; }

  .nav { padding: 16px 24px; }

  .nav-hamburger { display: flex; }

  .nav-links { display: none !important; }

  .nav-hamburger {
    position: fixed;
    top: 16px;
    right: 24px;
    z-index: 202;
  }

  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }

  .footer { padding: 56px 24px 0; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
