/* ============================================
   SIDEKICK CINCY — SHARED STYLES
   Brand: Navy #0D1B3E | Yellow #FFD93D | Coral #FF6B6B
   Font: Poppins (headings) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800;900&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --navy:   #0D1B3E;
  --navy2:  #162347;
  --yellow: #FFD93D;
  --coral:  #FF6B6B;
  --white:  #FFFFFF;
  --offwhite: #FFFDF4;
  --muted:  #718096;
  --light:  #F7F6F0;
  --border: #E8E4D9;
  --text:   #1A202C;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(13,27,62,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ---- NAV ---- */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}

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

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--coral); }

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links .nav-cta {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 18px;
}

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

.nav-instagram {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-instagram:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-instagram svg { width: 16px; height: 16px; fill: currentColor; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 16px; border-radius: 10px; }
  .nav-instagram { display: none; }
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 32px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.footer-brand .footer-logo span { color: var(--coral); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 220px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- UTILITY ---- */
.pill {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pill-coral {
  background: var(--coral);
  color: white;
}

.pill-navy {
  background: var(--navy);
  color: var(--yellow);
}

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
}

.btn-yellow:hover {
  box-shadow: 6px 6px 0 var(--navy);
}

.btn-coral {
  background: var(--coral);
  color: white;
  box-shadow: 4px 4px 0 #c0392b;
}

.btn-coral:hover {
  box-shadow: 6px 6px 0 #c0392b;
}

.btn-navy {
  background: var(--navy);
  color: var(--yellow);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--yellow);
}

/* Page hero shared */
.page-hero {
  background: var(--navy);
  padding: 64px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: var(--yellow);
  opacity: 0.06;
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  background: var(--coral);
  opacity: 0.07;
  border-radius: 50%;
}

.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero h1 span { color: var(--yellow); }

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* content wrapper */
.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* email signup strip */
.email-strip {
  background: var(--navy);
  padding: 56px 24px;
  text-align: center;
}

.email-strip h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
}

.email-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 28px;
}

.email-strip-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.email-strip-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  background: rgba(255,255,255,0.12);
  color: white;
  outline: none;
  transition: background 0.2s;
}

.email-strip-form input::placeholder { color: rgba(255,255,255,0.4); }
.email-strip-form input:focus { background: rgba(255,255,255,0.18); }

.email-strip-form button {
  background: var(--yellow);
  color: var(--navy);
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.email-strip-form button:hover { background: #f5cf2a; }

@media (max-width: 500px) {
  .email-strip-form { flex-direction: column; }
  .email-strip-form input,
  .email-strip-form button { width: 100%; border-radius: 12px; }
}
