/* Smart Prep — migrated from Google Sites */

@import url('https://fonts.googleapis.com/css?family=Oswald:400,600,700|Open+Sans:400,600,700&display=swap');

:root {
  --yellow: #FDD835;
  --dark: #1F1F1F;
  --text: #212121;
  --text-muted: #3D3D3D;
  --bg-light: #F4F4F4;
  --bg-lighter: #F7F7F7;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

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

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

/* Header / nav */
.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 40px;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 4px;
}

.site-nav a.active {
  background: var(--dark);
  color: var(--white);
}

.site-nav .dropdown { position: relative; }

.site-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 200px;
  padding: 8px 0;
  z-index: 10;
}

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

.site-nav .dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-weight: 400;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(33,33,33,0.5);
}

.hero-content { position: relative; z-index: 1; color: var(--white); }

.hero h1 {
  font-family: Oswald, sans-serif;
  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px;
}

.hero-underline {
  width: 320px;
  height: 6px;
  background: var(--yellow);
  margin: 0 auto;
}

/* Intro */
.intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
}

.section-divider {
  height: 3px;
  background: var(--yellow);
  opacity: 0.8;
  max-width: 1160px;
  margin: 0 auto;
}

/* Section headings */
.section-heading {
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: 29pt;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--dark);
  margin: 56px auto 32px;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.card {
  background: var(--white);
  text-align: center;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.card-title {
  font-family: Oswald, sans-serif;
  font-size: 16pt;
  font-weight: 400;
  margin-top: 16px;
  color: var(--dark);
}

.card-price {
  font-family: 'Open Sans', sans-serif;
  font-size: 13pt;
  color: var(--text-muted);
  margin-top: 6px;
}

.card-grade {
  font-family: Oswald, sans-serif;
  font-size: 9pt;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 20px;
  border: 1px solid var(--text-muted);
  border-radius: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13pt;
  color: var(--text-muted);
}

.card-link:hover { background: rgba(31,31,31,0.1); }

/* Promise section */
.promise {
  background: var(--bg-light);
  text-align: center;
  padding: 56px 24px;
}

.promise h2 {
  font-family: Oswald, sans-serif;
  font-size: 29pt;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 20px;
}

.promise p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--white);
  text-align: center;
  padding: 32px 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid #eee;
}

/* Content/booklet detail pages */
.content-body {
  max-width: 800px;
  margin: 48px auto 64px;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.content-body p { margin: 4px 0 12px; }

.content-body ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.content-body li { margin-bottom: 6px; }

.content-body strong.feature-title {
  display: block;
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .site-header { justify-content: center; padding: 14px 16px; flex-wrap: wrap; }
  .site-nav { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero h1 { font-size: 34px; }
  .hero-underline { width: 200px; }
  .section-heading { font-size: 22pt; }
}
