/* ═══════════════════════════════════════════
   GoWell Hospitality — Global Styles
   ═══════════════════════════════════════════ */

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

:root {
  --navy:      #0F2447;
  --navy-mid:  #1A3A6B;
  --navy-lt:   #254E8F;
  --sky:       #4A90D9;
  --sky-lt:    #EBF3FB;
  --white:     #FFFFFF;
  --off-white: #F7F9FC;
  --slate:     #64748B;
  --slate-lt:  #94A3B8;
  --border:    #DDE4EF;
  --gold:      #C9A84C;
  --green:     #4ade80;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,36,71,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px; background: var(--sky);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 900;
  color: var(--white); font-size: 18px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 18px; color: var(--white);
}
.nav-logo-text span { font-weight: 300; color: var(--sky); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--sky); transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--sky); color: var(--white);
  padding: 10px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--navy-lt); transform: translateY(-1px); }

/* ── SHARED SECTION ── */
section { padding: 96px 64px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 14px;
}
.section-eyebrow.light { color: rgba(74,144,217,0.9); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; line-height: 1.15;
  color: var(--navy); margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-lead {
  font-size: 17px; color: var(--slate); line-height: 1.75; max-width: 560px;
}
.section-lead.light { color: rgba(255,255,255,0.62); }
.divider { width: 48px; height: 3px; background: var(--sky); border-radius: 2px; margin-bottom: 28px; }
.divider.light { background: rgba(74,144,217,0.5); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--sky); color: var(--white);
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; display: inline-block;
  transition: background 0.2s, transform 0.2s; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: #3a7bc8; transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-dark {
  border: 1.5px solid var(--border); color: var(--navy);
  padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: var(--sky); color: var(--sky); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 70%);
  padding: 140px 64px 80px; text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 18px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }

/* ── FOOTER ── */
footer {
  background: #08172E; padding: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; margin-top: 12px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px; margin: 48px auto 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.28); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--white);
  flex-shrink: 0;
}
.nav-hamburger:hover {
  background: rgba(255,255,255,0.18);
}
.nav-hamburger svg {
  width: 22px;
  height: 22px;
  display: block;
}
.nav-hamburger .icon-close { display: none; }
.nav-hamburger.open .icon-open { display: none; }
.nav-hamburger.open .icon-close { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15,36,71,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 32px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a::after { display: none; }
  section { padding: 72px 24px; }
  .page-hero { padding: 120px 24px 64px; }
  .page-hero h1 { font-size: 38px; }
  footer { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
