/* ============================================
   Mermaid Aria — Landing Page Styles
   Palette sampled directly from the current Wix site:
   --teal:  #309AAC  (headlines, accents)
   --pink:  #ED1566  (buttons, character names)
   --navy:  #092F37  (body text)
   --peach: #FFC9B9  (section backgrounds)
   --mint:  #E7F1F0  (section backgrounds)

   Font note: the Wix site's script headlines look like the
   "More Sugar" font (same as your booth sign). More Sugar isn't
   on Google Fonts, so this uses Pacifico as a free stand-in.
   Send the font file if you have a licensed copy and I'll swap it in.
   ============================================ */

:root {
  --teal: #309AAC;
  --pink: #ED1566;
  --navy: #092F37;
  --peach: #FFC9B9;
  --mint: #E7F1F0;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--navy);
  background: #ffffff;
  line-height: 1.6;
}

.script {
  font-family: 'Pacifico', cursive;
  color: var(--teal);
  font-weight: 400;
}

.center { text-align: center; }

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  outline: 2px dashed rgba(255,255,255,0.6);
  outline-offset: -6px;
  transition: box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, outline-color 0.15s ease;
}

.btn:hover {
  box-shadow: 0 6px 16px rgba(237, 21, 102, 0.45);
}

.btn:active {
  background: #fff;
  color: var(--pink);
  outline-color: rgba(237,21,102,0.5);
  box-shadow: 0 2px 8px rgba(237, 21, 102, 0.25);
}

.btn-small {
  font-size: 0.9rem;
  padding: 0.55rem 1.4rem;
}

/* Hero button — override transform-based hover since it's absolutely positioned */
.buy-btn-overlay {
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
}

.buy-btn-overlay:hover {
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 20px rgba(237, 21, 102, 0.5);
}

.placeholder-link {
  outline: 2px dashed #fff;
  outline-offset: -6px;
  position: relative;
}

.shipping-note {
  font-size: 0.85rem;
  color: var(--navy);
  opacity: 0.7;
  margin: 0.5rem 0 0;
}

/* ---------- Hero ---------- */
.hero-wrap {
  position: relative;
  width: 100%;
  margin: 0;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* ---------- Characters / Book covers grid ---------- */
.characters {
  padding: 3rem 1.5rem 3.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.characters h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.books-heading {
  margin-top: 3.5rem;
}

.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}

.grid-item {
  text-align: center;
}

.grid-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  margin: 0 auto 1rem;
}

.grid-item img.cutout {
  object-fit: contain;
  background: var(--mint);
  padding: 0.5rem;
}

.grid-item h3 {
  color: var(--pink);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

.placeholder-copy {
  font-style: italic;
  opacity: 0.65;
  font-size: 0.9rem;
  margin: 0;
}

.blurb {
  font-size: 0.9rem;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.4rem;
}

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.product-media img {
  margin-bottom: 0;
  transition: transform 0.25s ease;
}

.quick-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 47, 55, 0.45);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .product-media:hover .quick-view {
    opacity: 1;
  }
  .product-media:hover img {
    transform: scale(1.04);
  }
}

/* ---------- Continue the Adventure section ---------- */
.adventure-section {
  background: var(--peach);
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.adventure-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.adventure-copy {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.7;
}

.adventure-tag {
  margin: 0 auto 1.75rem;
}

.adventure-tag img {
  max-width: 120px;
  margin: 0 auto;
  border-radius: 8px;
}

/* ---------- Bundle selector ---------- */
.bundle-selector {
  margin: 0.5rem 0 0.75rem;
}

.bundle-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.bundle-select {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--mint);
  border: 2px solid var(--teal);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23309AAC' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
  margin-bottom: 0.5rem;
}

.bundle-select:focus {
  outline: none;
  border-color: var(--pink);
}

/* ---------- Reviews teaser (home page) ---------- */
.reviews-teaser {
  padding: 3.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.reviews-teaser h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.reviews-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.teaser-card {
  background: var(--mint);
  border-radius: 16px;
  padding: 1.5rem;
}

.review-stars {
  color: #F5B400;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.review-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
}

.review-name {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 650px) {
  .reviews-teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--navy);
  opacity: 0.7;
}

/* ---------- Shop page ---------- */
.shop-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.shop-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.shop-section {
  margin-bottom: 3rem;
}

.shop-section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--mint);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

/* ---------- About / Coming Soon page ---------- */
.coming-soon-wrap {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.coming-soon-img {
  max-width: 220px;
  margin: 0 auto 1.5rem;
  border-radius: 0;
  background: var(--mint);
  padding: 1rem;
  border-radius: 50%;
}

.coming-soon-wrap h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.coming-soon-wrap p {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 650px) {
  .grid-2x2 {
    grid-template-columns: 1fr;
  }
}
