/*
Theme Name: Atomic Parenting
Theme URI:
Author: Your Name
Author URI:
Description: A blank starter theme.
Version: 1.0
*/

    :root {
      --gold: #C8A44E;
      --gold-light: #E8D5A0;
      --gold-dark: #9E7E2E;
      --cream: #FBF7EE;
      --cream-dark: #F0E8D6;
      --charcoal: #2A2A2A;
      --charcoal-light: #3D3D3D;
      --warm-white: #FEFCF7;
      --text-dark: #1A1A1A;
      --text-muted: #6B6358;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans Pro', sans-serif;
      color: var(--text-dark);
      background: var(--warm-white);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    .navbar-custom {
      background: rgba(254, 252, 247, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200, 164, 78, 0.15);
      padding: 0.8rem 0;
      transition: all 0.4s ease;
    }
    .navbar-custom.scrolled {
      box-shadow: 0 2px 30px rgba(0,0,0,0.06);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.35rem;
      color: var(--charcoal) !important;
      letter-spacing: -0.5px;
    }
    .navbar-brand span {
      color: var(--gold);
    }
    .nav-link {
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--text-muted) !important;
      padding: 0.5rem 1rem !important;
      transition: color 0.3s;
    }
    .nav-link:hover { color: var(--gold) !important; }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--charcoal);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(200,164,78,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200,164,78,0.08) 0%, transparent 50%);
    }
    .hero-grain {
      position: absolute;
      inset: 0;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-size: 200px;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      font-family: 'Caveat', cursive;
      font-size: 1.4rem;
      color: var(--gold);
      margin-bottom: 0.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.3s forwards;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 6vw, 5rem);
      color: var(--cream);
      line-height: 1.08;
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-subtitle {
      font-size: 1.15rem;
      font-weight: 300;
      color: rgba(251, 247, 238, 0.7);
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.7s forwards;
    }
    .hero-cta {
      opacity: 0;
      animation: fadeUp 0.8s 0.9s forwards;
    }

    /* atom decoration - LIGHTER VERSION */
    .atom-decoration {
      position: absolute;
      right: 8%;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
      height: 500px;
      opacity: 0.25;
      animation: atomSpin 40s linear infinite;
    }
    @keyframes atomSpin { to { transform: translateY(-50%) rotate(360deg); } }

    /* ─── BUTTONS ─── */
    .btn-gold {
      background: var(--gold);
      color: var(--charcoal);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 14px 36px;
      border: none;
      border-radius: 0;
      transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      overflow: hidden;
    }
    .btn-gold::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.4s;
    }
    .btn-gold:hover {
      background: var(--gold-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(200,164,78,0.35);
    }
    .btn-gold:hover::after { transform: translateX(0); }

    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 13px 36px;
      border: 2px solid var(--gold);
      border-radius: 0;
      transition: all 0.35s;
    }
    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--charcoal);
      text-decoration: none;
    }

    /* ─── ABOUT ─── */
    .section-about {
      padding: 7rem 0;
      background: var(--cream);
      position: relative;
    }
    .section-about::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    }
    .about-image-wrapper {
      position: relative;
      padding: 1.5rem;
    }
    .about-image-wrapper::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: 2px solid var(--gold);
      transform: translate(0px, 0px);
      z-index: 0;
    }
    .about-image {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      filter: grayscale(20%) contrast(1.05);
    }
    .about-placeholder {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 4/5;
      background: var(--charcoal);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: var(--gold);
    }
    .about-placeholder i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
    .about-placeholder span { font-family: 'Caveat', cursive; font-size: 1.2rem; opacity: 0.6; }
    .section-label {
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--charcoal);
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }
    .section-heading em { color: var(--gold); font-style: italic; }
    .about-text {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text-muted);
    }

    /* ─── PILLARS ─── */
    .section-pillars {
      padding: 7rem 0;
      background: var(--warm-white);
    }
    .pillar-card {
      text-align: center;
      padding: 3rem 2rem;
      position: relative;
      transition: all 0.4s;
      border: 1px solid transparent;
    }
    .pillar-card:hover {
      border-color: var(--gold-light);
      background: var(--cream);
      transform: translateY(-6px);
    }
    .pillar-icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      border: 2px solid var(--gold);
      border-radius: 50%;
      color: var(--gold);
      font-size: 1.4rem;
      transition: all 0.4s;
    }
    .pillar-card:hover .pillar-icon {
      background: var(--gold);
      color: var(--charcoal);
    }
    .pillar-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 0.8rem;
      color: var(--charcoal);
    }
    .pillar-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ─── QUOTES ─── */
    .section-quotes {
      padding: 6rem 0;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }
    .section-quotes::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(200,164,78,0.08) 0%, transparent 70%);
    }
    .quote-block {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 3rem 1rem;
    }
    .quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 6rem;
      color: var(--gold);
      line-height: 0.5;
      opacity: 0.4;
      margin-bottom: 1rem;
    }
    .quote-text {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      font-style: italic;
      color: var(--cream);
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto 1.5rem;
    }
    .quote-author {
      font-family: 'Caveat', cursive;
      font-size: 1.3rem;
      color: var(--gold);
    }

    /* ─── CHAPTERS ─── */
    .section-peek {
      padding: 7rem 0;
      background: var(--cream);
    }
    .peek-item {
      display: flex;
      align-items: flex-start;
      padding: 1.8rem 0;
      border-bottom: 1px solid rgba(200,164,78,0.2);
      transition: all 0.3s;
    }
    .peek-item:hover {
      padding-left: 1rem;
      border-bottom-color: var(--gold);
    }
    .peek-number {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 2.5rem;
      color: var(--gold);
      line-height: 1;
      margin-right: 1.5rem;
      min-width: 55px;
      opacity: 0.6;
    }
    .peek-item:hover .peek-number { opacity: 1; }
    .peek-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--charcoal);
      margin-bottom: 0.3rem;
    }
    .peek-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ─── MOVEMENT SECTION ─── */
    .section-movement {
      padding: 7rem 0;
      background: var(--warm-white);
      position: relative;
    }
    .section-movement::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    }
    .movement-content {
      max-width: 750px;
      margin: 0 auto;
      text-align: center;
    }
    .movement-text {
      font-size: 1.1rem;
      line-height: 1.9;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    /* ─── AUTHOR ─── */
    .section-author {
      padding: 7rem 0;
      background: var(--cream);
    }
    .author-subtitle {
      font-family: 'Caveat', cursive;
      font-size: 1.4rem;
      color: var(--gold);
      margin-top: -1rem;
      margin-bottom: 1.5rem;
    }
    .author-quote-handwritten {
      font-family: 'Caveat', cursive;
      font-size: 1.5rem;
      color: var(--gold-dark);
      line-height: 1.5;
      margin-top: 1.5rem;
      padding-left: 1.5rem;
      border-left: 3px solid var(--gold);
    }
    .author-expanded-text {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-top: 1rem;
      padding-left: 1.5rem;
      border-left: 3px solid var(--gold-light);
    }

    /* ─── JOIN THE MOVEMENT / NEWSLETTER ─── */
    .section-join {
      padding: 6rem 0;
      background: var(--charcoal);
      position: relative;
    }
    .section-join::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 100%, rgba(200,164,78,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 0%, rgba(200,164,78,0.06) 0%, transparent 40%);
    }
    .join-content { position: relative; z-index: 1; }
    .join-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      color: var(--cream);
      margin-bottom: 0.8rem;
    }
    .join-sub {
      font-size: 1.05rem;
      color: rgba(251,247,238,0.6);
      margin-bottom: 2rem;
      max-width: 550px;
      margin-left: auto;
      margin-right: auto;
    }
    .join-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 3rem;
    }

    /* Stats row */
    .stats-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(200,164,78,0.2);
    }
    .stat-item {
      text-align: center;
      min-width: 120px;
    }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 2.5rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-label {
      font-size: 0.85rem;
      color: rgba(251,247,238,0.5);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* ─── FOOTER ─── */
    .site-footer {
      padding: 3rem 0;
      background: var(--text-dark);
      text-align: center;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.2rem;
      color: var(--cream);
      margin-bottom: 1rem;
    }
    .footer-brand span { color: var(--gold); }
    .footer-social a {
      display: inline-flex;
      width: 40px; height: 40px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(200,164,78,0.3);
      color: var(--gold);
      margin: 0 0.3rem;
      transition: all 0.3s;
      font-size: 0.9rem;
    }
    .footer-social a:hover {
      background: var(--gold);
      color: var(--charcoal);
      border-color: var(--gold);
      text-decoration: none;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: rgba(251,247,238,0.3);
      margin-top: 1.2rem;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(25px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 767px) {
      .hero { min-height: 90vh; padding-top: 5rem; }
      .about-image-wrapper { margin-bottom: 2.5rem; }
      .about-image-wrapper::before { transform: translate(0px, 0px); }
      .pillar-card { padding: 2rem 1.5rem; }
      .peek-number { font-size: 2rem; min-width: 40px; }
      .atom-decoration { width: 300px; height: 300px; right: -15%; }
      .section-about, .section-pillars, .section-peek, .section-author, .section-movement { padding: 5rem 0; }
      .stats-row { gap: 1.5rem; }
      .stat-item { min-width: 100px; }
      .stat-number { font-size: 2rem; }
	  .navbar-brand {
  margin-left: 30px !important;
}

    }

    @media (max-width: 576px) {
      .hero-title { font-size: 2.4rem; }
      .join-heading { font-size: 1.6rem; }
      .join-buttons { flex-direction: column; align-items: center; }
      .join-buttons .btn { width: 100%; max-width: 280px; }

		}

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--charcoal); }
    ::-webkit-scrollbar-thumb { background: var(--gold); }
  