/* ============================================
   PRECISION CLINICAL EDUCATION — Website CSS
   Navy #1a3c5e | Gold #f0b429 | Sky #d6eaf8
   Montserrat + Open Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  color: #1a3c5e;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.4em; font-weight: 700; }
h2 { font-size: 1.8em; font-weight: 600; }
h3 { font-size: 1.3em; font-weight: 600; }
h4 { font-size: 1.1em; font-weight: 600; }

p { margin-bottom: 1em; }

a {
  color: #1a3c5e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #f0b429; }

strong { color: #1a3c5e; }

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

.section-alt {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.section-dark {
  padding: 60px 0;
  background-color: #1a3c5e;
  color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark a {
  color: #f0b429;
}

.text-center { text-align: center; }

/* === HEADER / NAV === */
header {
  background-color: #1a3c5e;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

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

.nav-links a {
  color: #d6eaf8;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f0b429;
  border-bottom-color: #f0b429;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #d6eaf8;
  font-size: 24px;
  cursor: pointer;
}

/* === HERO SECTION === */
.hero {
  background-color: #1a3c5e;
  color: #ffffff;
  text-align: center;
  padding: 80px 24px;
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 12px;
}

.hero h1 {
  color: #ffffff;
  font-size: 2.6em;
  margin-bottom: 10px;
}

.hero .tagline {
  color: #d6eaf8;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero .subtext {
  color: #a8c4d8;
  font-size: 1em;
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 80px;
  height: 3px;
  background-color: #f0b429;
  margin: 24px auto;
}

/* === CARDS / FEATURES === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: #ffffff;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  padding: 30px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(26, 60, 94, 0.1);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: #5a6a7a;
  font-size: 0.95em;
}

.card-icon {
  font-size: 2em;
  margin-bottom: 16px;
  color: #f0b429;
}

/* === VALUES === */
.value-item {
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 3px solid #f0b429;
}

.value-item h3 {
  margin-bottom: 6px;
}

.value-item p {
  color: #5a6a7a;
}

/* === COMING SOON BADGE === */
.badge-coming-soon {
  display: inline-block;
  background-color: #f0b429;
  color: #1a3c5e;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-top: 20px;
}

/* === CTA BUTTON === */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #f0b429;
  color: #1a3c5e;
}
.btn-primary:hover {
  background-color: #e0a520;
  color: #1a3c5e;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #f0b429;
}
.btn-outline:hover {
  background-color: #f0b429;
  color: #1a3c5e;
}

/* === FOOTER === */
footer {
  background-color: #0d1520;
  color: #a8b4c0;
  padding: 40px 0 20px;
  font-size: 14px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

footer h4 {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

footer a {
  color: #a8b4c0;
}
footer a:hover {
  color: #f0b429;
}

footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #1a2a3a;
  padding-top: 20px;
  text-align: center;
  color: #6a7a8a;
  font-size: 13px;
}

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

  .hero h1 { font-size: 1.8em; }
  .hero-logo { width: 140px; height: 140px; }

  h1 { font-size: 1.8em; }
  h2 { font-size: 1.4em; }

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

  .card-grid {
    grid-template-columns: 1fr;
  }
}
