/* =====================================================
   WORLD OF LUCY KAY
   Botanical Dreams - botanical-dreams.css v0.3
   Darker button hover + larger discovery numbers
===================================================== */

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

html,
body {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background: #060704;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* =====================================================
   MAIN WORLD PAGE
===================================================== */

.world-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.world-bg {
  position: fixed;
  inset: 0;
  background: url("botanical-bg.webp") center center / cover no-repeat;
  transform: scale(1.03);
  z-index: 0;
}

.world-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 34%, rgba(255, 235, 165, 0.18), rgba(58, 82, 34, 0.16) 36%, rgba(0, 0, 0, 0.34) 76%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.62) 100%);
}

.gold-frame {
  position: fixed;
  inset: 22px;
  border: 1px solid rgba(203, 164, 91, 0.58);
  z-index: 5;
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

/* =====================================================
   HEADER
===================================================== */

.world-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 34px 56px 0;
}

.back-link,
.shop-link {
  color: rgba(255, 245, 220, 0.92);
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  transition: 0.3s ease;
}

.back-link:hover,
.shop-link:hover {
  color: #e2bf72;
  text-shadow: 0 0 14px rgba(226, 191, 114, 0.5);
}

.shop-link {
  justify-self: end;
}

.world-logo {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 174, 92, 0.88);
  border-radius: 50%;
  background: rgba(10, 14, 8, 0.5);
  color: #f5d48a;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.85rem;
  box-shadow: 0 0 20px rgba(203, 164, 91, 0.28);
}

/* =====================================================
   HERO
===================================================== */

.world-hero {
  position: relative;
  z-index: 8;
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px 30px;
}

.eyebrow {
  margin-bottom: 12px;
  color: rgba(245, 212, 138, 0.95);
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.world-hero h1 {
  color: #fff7e8;
  font-family: "Cinzel", serif;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72);
}

.world-hero h1 span {
  display: block;
  font-size: clamp(3rem, 5.55vw, 6.1rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 0.88;
}

.world-hero h1 em {
  display: block;
  margin-top: 8px;
  color: #fff2d0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 3.85vw, 4.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

.hero-subtitle {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 245, 220, 0.94);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.22rem, 1.58vw, 1.75rem);
  font-style: italic;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.world-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 52px;
}

/* =====================================================
   BUTTONS
===================================================== */

.world-button {
  position: relative;
  display: inline-block;
  padding: 15px 34px;
  border: 1px solid rgba(224, 180, 89, 0.85);
  color: #f6d99a;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.world-button.primary {
  background: rgba(14, 30, 14, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 16px 38px rgba(0, 0, 0, 0.42);
}

.world-button.secondary {
  background: rgba(10, 12, 8, 0.42);
}

.world-button::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(224, 180, 89, 0.28);
  pointer-events: none;
}

/* darker, more readable hover */
.world-button:hover {
  background: rgba(12, 25, 12, 0.9);
  color: #ffe2a3;
  border-color: rgba(245, 203, 112, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 20px rgba(224, 180, 89, 0.42),
    0 16px 38px rgba(0, 0, 0, 0.42);
  transform: translateY(-3px);
}

/* =====================================================
   DISCOVERY CARDS
===================================================== */

.discovery-row {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(1180px, 92vw);
  margin: 30px auto 92px;
}

.discovery-card {
  min-height: 205px;
  padding: 28px 24px;
  border: 1px solid rgba(203, 164, 91, 0.46);
  background: rgba(10, 15, 8, 0.6);
  color: inherit;
  text-decoration: none;
  backdrop-filter: blur(5px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 18px 45px rgba(0, 0, 0, 0.34);
  transition: 0.3s ease;
}

.discovery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 180, 89, 0.78);
  background: rgba(18, 31, 14, 0.66);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 24px rgba(224, 180, 89, 0.18),
    0 22px 50px rgba(0, 0, 0, 0.46);
}

/* numbers enlarged by about 30% */
.discovery-card span {
  color: #d7ae5c;
  font-family: "Cinzel", serif;
  font-size: 0.94rem;
  letter-spacing: 0.22em;
}

.discovery-card h2 {
  margin: 18px 0 12px;
  color: #fff4d6;
  font-family: "Cinzel", serif;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.discovery-card p {
  color: rgba(255, 245, 220, 0.86);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.38;
}

/* =====================================================
   CONTENT SECTIONS
===================================================== */

.story-section,
.collection-preview {
  position: relative;
  z-index: 8;
  width: min(850px, 88vw);
  margin: 0 auto 88px;
  padding: 44px 48px;
  border: 1px solid rgba(203, 164, 91, 0.46);
  background:
    linear-gradient(rgba(10, 14, 8, 0.72), rgba(10, 14, 8, 0.72)),
    radial-gradient(circle at top, rgba(224, 180, 89, 0.14), transparent 60%);
  backdrop-filter: blur(6px);
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 22px 55px rgba(0, 0, 0, 0.44);
}

.section-kicker {
  color: #d7ae5c !important;
  font-family: "Cinzel", serif !important;
  font-size: 0.74rem !important;
  font-style: normal !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-section h2,
.collection-preview h2 {
  margin: 14px 0 18px;
  color: #fff7e8;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.story-section p,
.collection-preview p {
  color: rgba(255, 245, 220, 0.9);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.5;
}

.collection-preview .world-button {
  margin-top: 28px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.world-header,
.world-hero,
.discovery-card,
.story-section,
.collection-preview {
  animation: fadeUp 1.25s ease both;
}

.world-hero {
  animation-delay: 0.12s;
}

.discovery-card:nth-child(1) { animation-delay: 0.2s; }
.discovery-card:nth-child(2) { animation-delay: 0.28s; }
.discovery-card:nth-child(3) { animation-delay: 0.36s; }
.discovery-card:nth-child(4) { animation-delay: 0.44s; }

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .discovery-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .gold-frame {
    inset: 12px;
  }

  .world-header {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    padding: 24px 20px 0;
  }

  .back-link,
  .shop-link {
    justify-self: center;
  }

  .world-hero {
    min-height: 72vh;
    padding-top: 58px;
  }

  .world-actions {
    margin-top: 40px;
  }

  .world-button {
    width: min(300px, 90vw);
    text-align: center;
  }

  .discovery-row {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .story-section,
  .collection-preview {
    padding: 34px 24px;
  }
}


/* =====================================================
   BOTANICAL DREAMS - CLICKABLE CHAPTER CARD FIX
===================================================== */

.clickable-story-card {
  cursor: pointer;
  text-decoration: none !important;
  transition: 0.32s ease;
}

.clickable-story-card,
.clickable-story-card *,
.read-chapter {
  text-decoration: none !important;
}

.clickable-story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 180, 89, 0.82);
  background:
    linear-gradient(rgba(14, 30, 14, 0.78), rgba(14, 30, 14, 0.78)),
    radial-gradient(circle at top, rgba(224, 180, 89, 0.18), transparent 60%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 24px rgba(224, 180, 89, 0.18),
    0 26px 58px rgba(0, 0, 0, 0.5);
}

.read-chapter {
  position: relative;
  display: inline-block;
  margin-top: 28px;
  padding: 13px 26px;
  border: 1px solid rgba(224, 180, 89, 0.82);
  background: rgba(14, 30, 14, 0.78);
  color: #f6d99a !important;
  font-family: "Cinzel", serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.read-chapter::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(224, 180, 89, 0.22);
  pointer-events: none;
}

.clickable-story-card:hover .read-chapter {
  background: rgba(12, 25, 12, 0.92);
  color: #ffe2a3 !important;
  border-color: rgba(245, 203, 112, 0.95);
}


/* =====================================================
   READ CHAPTER BUTTON - FINAL POLISH
===================================================== */

.read-chapter,
.read-chapter:link,
.read-chapter:visited {
  position: relative;
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  border: 1px solid rgba(224, 180, 89, 0.86);
  background: rgba(14, 30, 14, 0.82);
  color: #f6d99a !important;
  text-decoration: none !important;
  font-family: "Cinzel", serif;
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(0, 0, 0, 0.28);
  transition: 0.3s ease;
}

.read-chapter::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(224, 180, 89, 0.22);
  pointer-events: none;
}

.read-chapter::after {
  content: " ✦";
  color: rgba(246, 217, 154, 0.95);
  letter-spacing: 0;
}

.read-chapter:hover {
  background: rgba(12, 25, 12, 0.94);
  color: #ffe2a3 !important;
  border-color: rgba(245, 203, 112, 0.98);
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow:
    0 0 20px rgba(224, 180, 89, 0.36),
    0 16px 36px rgba(0, 0, 0, 0.38);
}
