/* =========================
   AWWNK: force full-page background + kill global dark theme
   ========================= */

:root {
  --awwnk-bg: #c9c2a6; /* slightly darker bone; tweak later */
}

html,
body {
  background: var(--awwnk-bg) !important;
  background-image: none !important;
  min-height: 100%;
}

body.awwnk {
  background: var(--awwnk-bg) !important;
  background-image: none !important;
  min-height: 100vh;
  padding: 2rem 1rem !important;  /* match your site spacing */
}
/* =========================
   AWWNK: GLOBAL TEXT COLOR
   ========================= */

body.awwnk {
  color: #5a5a4b;
}

/* If style.css uses an overlay/gradient layer */
body.awwnk::before,
body.awwnk::after {
  content: none !important;
  display: none !important;
}

/* Ensure every top-level section stays the same color */
body.awwnk header,
body.awwnk .page-wrapper,
body.awwnk main,
body.awwnk .main-content,
body.awwnk aside {
  background: var(--awwnk-bg) !important;
  background-image: none !important;
}

/* Make sure the content area fills the viewport so no black shows below */
body.awwnk .page-wrapper {
  min-height: calc(100vh - 1px);
}

/* =========================
   VISUALLY CENTERED TOP BANNER
   ========================= */

.top-banner {
  width: 100%;
  background-color: var(--awwnk-bg);
  padding: 2rem 0;
}

.top-banner img {
  display: block;
  margin: 0 auto;       /* true centering */
  max-width: 1200px;    /* keeps it aligned with content */
  width: auto;          /* IMPORTANT: do NOT stretch */
  height: auto;
}


/* =========================
   PAGE LAYOUT
   ========================= */

.page-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  gap: 3rem;
  background-color: #e6e4da;
}

.main-content {
  flex: 1;
  background-color: #e6e4da;
}

.right-sidebar {
  width: 260px;
  font-size: 0.9rem;
  color: #444;
  background-color: #e6e4da;
}
/* =========================
   BOOK FEATURE (CHANCE)
   ========================= */

.book-feature {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Cover image */
.book-cover {
  width: 180px;          /* adjust if needed */
  height: auto;
  flex-shrink: 0;
}

/* Text block */
.book-info {
  max-width: 500px;
}

.book-blurb {
  margin-top: 0.5rem;
}

/* =========================
   COMING SOON COVERS
   ========================= */

.coming-soon-covers {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0 2rem;
}

.coming-soon-covers img {
  width: 180px;          /* adjust if needed */
  height: auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* =========================
   TYPOGRAPHY
   ========================= */

.page-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.series-tagline {
  font-style: italic;
  color: #5a5a4b;
  margin-bottom: 2rem;
}

.section-divider {
  border: none;
  border-top: 1px solid #5a5a4b;
  margin: 3rem 0;
}

.book-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

/* =========================
   SPIRAL IMAGE DIVIDER
   ========================= */

.spiral-divider {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.spiral-divider img {
  max-width: 600px;   /* adjust if needed */
  width: 100%;
  height: auto;
  display: block;
}
/* =========================
   PRE-ORDER CTA BUTTON
   ========================= */

.preorder-cta {
  margin: 2rem 0 3rem;
  display: flex;
  justify-content: center; /* centers the button */
}

.preorder-button {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background-color: #5a5a4b;   /* dark button */
  color: var(--awwnk-bg);      /* light text */
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.preorder-button:hover {
  background-color: #3f3f35;  /* slightly darker on hover */
  transform: translateY(-1px);
}

/* =========================
   AWWNK – MOBILE FIX (correct class names)
   ========================= */
@media (max-width: 900px) {

  body.awwnk {
    padding: 1rem !important;
  }

  /* Banner scales nicely */
  .top-banner {
    padding: 1rem 0;
  }
  .top-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Stack main + sidebar */
  .page-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem 1rem;
  }

  .right-sidebar {
    width: 100%;
    font-size: 0.95rem;
  }

  /* Headings */
  .page-title {
    font-size: 1.8rem;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .series-tagline {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  /* Spiral divider image */
  .spiral-divider img {
    width: 85%;
    max-width: 360px;
    height: auto;
    margin: 1.25rem auto;
    display: block;
  }

  /* ✅ CHANCE section: stack cover above text */
  .book-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .book-cover {
    width: min(240px, 70vw);
    height: auto;
  }

  .book-info {
    max-width: 100%;
  }

  /* ✅ Coming soon covers: stack on mobile */
  .coming-soon-covers {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .coming-soon-covers img {
    width: min(260px, 80vw);
    height: auto;
  }
     .preorder-cta {
    text-align: center;
    margin: 1.5rem 0 2.5rem;
  }

  .preorder-button {
    width: auto;
    font-size: 0.95rem;
  }

}


