/* ============================================================
   Chalk Lily — custom.css v2.5
   BEACON TRANSPARENT · MUSEUM CALM · FINAL MATCH
   ============================================================ */

/* --------------------------------------------
   Root Tokens
-------------------------------------------- */
:root {
  --clr-ink-black: #1C1C1C;
  --clr-bronze: #B59678;
  --clr-fossil: #F4EFEA;
  --clr-linen: #F0E7E0;
  --clr-powder: #FBFCFA;
  --clr-iron: #4B5056;
  --clr-slate: #7D8D95;
  --clr-bone: #DDDACB;
  
  --header-height: 110px;
  --transition-fast: 0.25s ease;
  --transition-med: 0.4s ease;
}

/* --------------------------------------------
   Global Reset + Typography
-------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: "Lora", serif;
  background: var(--clr-powder);
  color: var(--clr-ink-black);
}

a {
  color: var(--clr-bronze);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover, a:focus {
  opacity: 0.8;
}

/* --------------------------------------------
   HEADER — BEACON TRANSPARENT
-------------------------------------------- */
header.cl-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: center;
  z-index: 9999;
  background: transparent;
}

.cl-header__inner {
  width: 100%;
  max-width: 1320px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cl-header__logo img {
  height: 60px;
  width: auto;
}

.cl-primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 32px;
}

.cl-primary-nav a {
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.cl-primary-nav a:hover::after,
.cl-primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--clr-bronze);
}

/* Header separator (Beacon Rule) */
.cl-beacon-rule {
  width: 100%;
  height: 1px;
  background: transparent;
}

/* --------------------------------------------
   HERO
-------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content center */
.hero-center {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding-top: var(--header-height);
  text-align: center;
  color: #FFFFFF;
}

/* Plate */
.hero-plate {
  background: rgba(28, 28, 28, 0.45);
  padding: 40px 36px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-plate-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-bronze);
  margin-bottom: 12px;
}

.hero-plate-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #FFFFFF;
}

.hero-plate-subtitle,
.hero-plate-text,
.hero-plate-author {
  color: #FFFFFF;
  margin: 0 0 12px 0;
  line-height: 1.55;
}

.hero-plate-author {
  font-style: italic;
  margin-top: 12px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.cl-btn {
  display: inline-block;
  padding: 12px 22px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--clr-bronze);
  color: #FFFFFF;
}

/* Down Arrow (Bootstrap icon) */
.hero-down,
.section-down {
  font-size: 36px;
  color: white;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  margin-top: 30px;
}

.hero-down:hover,
.section-down:hover {
  opacity: 0.7;
}

/* Force clickability (your issue fixed) */
.hero-down i,
.section-down i {
  pointer-events: none;
}

/* --------------------------------------------
   NEW & NOTEWORTHY
-------------------------------------------- */
.cl-new-release {
  padding: 140px 0;
  background: var(--clr-powder);
}

.cl-section-header h2 {
  text-align: center;
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  color: var(--clr-iron);
  margin-bottom: 60px;
}

/* Two-column */
.cl-new-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.cl-new-left img {
  width: 420px;
  height: auto;
  border: 1px solid var(--clr-bone);
}

/* Tabs */
.cl-tabs-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.cl-tabs-nav button {
  background: transparent;
  border: 1px solid var(--clr-bone);
  padding: 10px 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cl-tabs-nav button.active {
  background: var(--clr-bronze);
  color: white;
  border-color: var(--clr-bronze);
}

.cl-tab-pane {
  display: none;
  line-height: 1.6;
}

.cl-tab-pane.active {
  display: block;
}

/* --------------------------------------------
   COMING SOON
-------------------------------------------- */
.cl-soon {
  position: relative;
  padding: 160px 0;
  color: white;
}

.cl-soon-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cl-soon-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl-soon-center {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.cl-soon-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* Unified Beacon Museum Cards */
.cl-soon-card3 {
  background: rgba(28,28,28,0.55);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.25);
  width: 320px;
  color: white;
  backdrop-filter: blur(4px);
}

.soon-label {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-bronze);
  margin-bottom: 10px;
}

.soon-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.soon-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 14px 0;
}

/* --------------------------------------------
   AUTHORS SECTION
-------------------------------------------- */
.cl-authors {
  padding: 140px 0;
  background: var(--clr-powder);
}

.cl-author-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cl-author-form input,
.cl-author-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--clr-bone);
  font-family: "Inter", sans-serif;
}

/* --------------------------------------------
   ABOUT
-------------------------------------------- */
.cl-about {
  position: relative;
  padding: 180px 0;
}

.cl-about-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cl-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl-about-center {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.cl-about-card-translucent {
  background: rgba(255,255,255,0.65);
  padding: 40px 36px;
  backdrop-filter: blur(6px);
  border: 1px solid var(--clr-bone);
}

.cl-about-title {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  color: var(--clr-iron);
}

.cl-about-divider {
  width: 100%;
  height: 1px;
  background: var(--clr-bone);
  margin: 20px 0;
}

/* --------------------------------------------
   FOOTER
-------------------------------------------- */
footer {
  background: var(--clr-powder);
  padding: 100px 0;
  text-align: center;
}

footer a {
  color: var(--clr-bronze);
}

footer p {
  color: var(--clr-slate);
  font-size: 0.95rem;
  line-height: 1.5;
}
