/* starringmykid.com — v1 base styles
   Palette is pulled from the logo:
   --smk-cyan:   #5BC0E8  (sky wordmark)
   --smk-yellow: #F6D64A  (star, rocket flame)
   --smk-dark:   #1A4A6B  (dark text)
   --smk-coral:  #FF7A6C  (accent)
   --smk-cream:  #FFF8EC  (warm background)
*/

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: #2C3E50;
  background: var(--smk-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  color: var(--smk-dark);
  font-weight: 600;
}

.smk-h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.smk-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
}

.smk-underline {
  background-image: linear-gradient(180deg, transparent 60%, var(--smk-yellow) 60%);
  padding: 0 0.15em;
}

.smk-muted { color: #6C7B8A; }

/* --- Navbar --- */
.smk-navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(26, 74, 107, 0.08);
  padding: 0.75rem 0;
}
.smk-logo { height: 48px; width: auto; }
.smk-logo-footer { height: 40px; width: auto; }
.smk-navbar .nav-link {
  color: var(--smk-dark);
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.smk-navbar .nav-link:hover { color: var(--smk-cyan); }

/* --- Buttons --- */
.smk-btn-primary {
  background: var(--smk-coral);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 0 rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.smk-btn-primary:hover {
  background: #FF6554;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.1);
}
.smk-btn-outline {
  background: #fff;
  color: var(--smk-dark);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 2px solid var(--smk-cyan);
}
.smk-btn-outline:hover {
  background: var(--smk-cyan);
  color: #fff;
}

/* --- Hero --- */
.smk-hero {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #E8F6FD 0%, var(--smk-cream) 100%);
  position: relative;
  overflow: hidden;
}
.smk-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: var(--smk-yellow);
  border-radius: 50%;
  opacity: 0.25;
}
.smk-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: var(--smk-cyan);
  border-radius: 50%;
  opacity: 0.18;
}
.smk-hero .container { position: relative; z-index: 1; }
.smk-hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(26, 74, 107, 0.12);
  transform: rotate(-2deg);
}
.smk-hero-placeholder {
  background: linear-gradient(135deg, #E8F6FD, #FFF8EC);
  border-radius: 16px;
  padding: 4rem 2rem;
  color: var(--smk-cyan);
  font-size: 4rem;
  text-align: center;
}

/* --- Sections --- */
.smk-section { padding: 5rem 0; }
.smk-section-alt { background: #fff; }
.smk-section-cta {
  background: linear-gradient(135deg, var(--smk-cyan) 0%, #3DA8D4 100%);
  color: #fff;
}
.smk-section-cta h2, .smk-section-cta .lead { color: #fff; }

/* --- Steps --- */
.smk-step {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 2px solid #F0F4F8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.smk-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 74, 107, 0.1);
}
.smk-step-num {
  background: var(--smk-yellow);
  color: var(--smk-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* --- Feature card --- */
.smk-feature-card {
  background: linear-gradient(135deg, #FFF8EC 0%, #FFE9C7 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid var(--smk-yellow);
}
.smk-feature-icon {
  font-size: 4rem;
  color: var(--smk-coral);
}

/* --- Pricing --- */
.smk-plan {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 2px solid #F0F4F8;
  height: 100%;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.smk-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 74, 107, 0.12);
}
.smk-plan-featured {
  border-color: var(--smk-cyan);
  box-shadow: 0 12px 40px rgba(91, 192, 232, 0.2);
  transform: scale(1.03);
}
.smk-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--smk-cyan);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.smk-plan-name { font-size: 1.5rem; margin-bottom: 0.5rem; }
.smk-plan-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.25rem; }
.smk-plan-amount {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--smk-dark);
}
.smk-plan-period { color: #6C7B8A; }
.smk-plan-annual { color: #6C7B8A; margin-bottom: 1.5rem; }
.smk-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.smk-plan-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
}
.smk-plan-features li i {
  color: var(--smk-cyan);
  margin-right: 0.5rem;
}

/* --- Footer --- */
.smk-footer {
  background: var(--smk-dark);
  color: #B8D1E1;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.smk-footer h6 {
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 1rem;
}
.smk-footer a {
  color: #B8D1E1;
  text-decoration: none;
}
.smk-footer a:hover { color: var(--smk-yellow); }
.smk-footer hr { border-color: rgba(255,255,255,0.1); }

/* --- Responsive tweaks --- */
@media (max-width: 767px) {
  .smk-hero { padding: 3rem 0 4rem; }
  .smk-section { padding: 3rem 0; }
  .smk-plan-featured { transform: none; }
}
