/* Teen Ledger - Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: #FAFAF8; color: #1a1a18; line-height: 1.6; }

/* Navigation */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border-bottom: 0.5px solid #D3D1C7;
  background: #FAFAF8;
  position: sticky; top: 0; z-index: 100;
}
.logo { font-family: 'DM Serif Display', serif; font-size: 22px; color: #1a1a18; letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: #1D9E75; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 14px; color: #5F5E5A; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #1D9E75; }
.nav-cta {
  background: #1D9E75; color: #fff; border: none;
  padding: 8px 20px; border-radius: 100px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s; text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: #0F6E56; }

/* Buttons */
.btn-primary {
  background: #1D9E75; color: #fff; border: none;
  padding: 12px 28px; border-radius: 100px; font-size: 15px;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #0F6E56; }
.btn-ghost {
  background: transparent; color: #1a1a18;
  border: 0.5px solid #B4B2A9;
  padding: 12px 28px; border-radius: 100px; font-size: 15px;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: border-color 0.2s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: #1D9E75; color: #1D9E75; }

/* Footer */
footer {
  padding: 2rem 2.5rem; border-top: 0.5px solid #D3D1C7;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 18px; text-decoration: none; color: #1a1a18; }
.footer-logo span { color: #1D9E75; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 13px; color: #888780; text-decoration: none; }
.footer-links a:hover { color: #1D9E75; }
.footer-copy { font-size: 12px; color: #B4B2A9; }

/* Newsletter section */
.newsletter {
  background: #E1F5EE; padding: 4rem 2.5rem; text-align: center;
}
.newsletter h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px; letter-spacing: -0.8px; color: #1a1a18; margin-bottom: 0.75rem;
}
.newsletter p { color: #5F5E5A; margin-bottom: 1.5rem; font-size: 16px; }
.newsletter-form { display: flex; gap: 0.75rem; justify-content: center; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border-radius: 100px;
  border: 0.5px solid #9FE1CB; font-size: 14px;
  font-family: 'DM Sans', sans-serif; background: #fff;
  outline: none;
}
.newsletter-form input:focus { border-color: #1D9E75; }

@media (max-width: 768px) {
  nav { padding: 1rem; }
  .nav-links { display: none; }
}
