/*
Theme Name: Beach Chair Confessions
Theme URI: https://beachchairconfessions.com
Author: Lauren & Koren
Description: Custom theme for Beach Chair Confessions — two best friends, one beach, zero filters. Built WooCommerce-ready.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: beach-chair-confessions
*/

:root{
  --navy:#16233c;
  --navy-soft:#233657;
  --coral:#e2624c;
  --coral-deep:#c94b38;
  --sand:#f6ede0;
  --sand-dark:#ecdfcb;
  --gold:#f3a94e;
  --teal:#2f6b64;
  --white:#fffaf3;
  --ink:#2a2320;
  --shadow: 0 10px 30px rgba(22,35,60,0.18);
  --radius: 18px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}

body{
  margin:0;
  background:var(--sand);
  color:var(--ink);
  font-family:'Poppins', sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

h1,h2,h3{
  font-family:'Anton', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
  color:var(--navy);
  margin:0;
}

.script{
  font-family:'Caveat', cursive;
  color:var(--coral);
  font-weight:700;
}

a{color:inherit;}
img{max-width:100%; height:auto;}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

/* ---------- NAV ---------- */
.site-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,237,224,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--sand-dark);
}
.site-nav .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:12px;
  padding-bottom:12px;
}
.nav-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Anton', sans-serif;
  font-size:1.05rem;
  color:var(--navy);
  text-decoration:none;
  letter-spacing:0.03em;
}
.nav-brand img{
  height:64px;
  width:auto;
  object-fit:contain;
}
.nav-brand .site-title{
  position:absolute;
  width:1px; height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}
.nav-links{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
  font-size:0.92rem;
  font-weight:600;
}
.nav-links a{
  text-decoration:none;
  color:var(--navy-soft);
  position:relative;
  padding-bottom:4px;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px;
  background:var(--coral);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.25s ease;
}
.nav-links a:hover::after{transform:scaleX(1);}
@media (max-width:640px){
  .nav-links{display:none;}
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  background:var(--navy);
}
.hero img{
  display:block;
  width:100%;
  height:auto;
  max-height:80vh;
  object-fit:contain;
  background:var(--navy);
}
.hero-sub{
  background:var(--navy);
  text-align:center;
  padding:38px 24px 46px;
}
.hero-sub p{
  color:var(--sand);
  font-size:1.1rem;
  max-width:560px;
  margin:0 auto 26px;
  font-weight:400;
}
.hero-sub p strong{color:var(--gold); font-weight:600;}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.btn{
  display:inline-block;
  padding:13px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:0.95rem;
  text-decoration:none;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  border:2px solid transparent;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{
  background:var(--coral);
  color:var(--white);
  box-shadow:0 8px 20px rgba(226,98,76,0.35);
}
.btn-primary:hover{background:var(--coral-deep); color:var(--white);}
.btn-ghost{
  background:transparent;
  color:var(--sand);
  border-color:rgba(246,237,224,0.4);
}
.btn-ghost:hover{border-color:var(--gold); color:var(--gold);}

/* ---------- CHAIR DIVIDER (signature element) ---------- */
.chair-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:0 auto;
  padding:46px 0 10px;
}
.chair-divider .line{
  height:1px;
  width:60px;
  background:var(--navy-soft);
  opacity:0.25;
}
.chair-divider svg{width:30px; height:30px; opacity:0.8;}

/* ---------- SECTION HEADERS ---------- */
.section{
  padding:20px 0 80px;
}
.section-head{
  text-align:center;
  margin-bottom:46px;
}
.eyebrow{
  display:block;
  font-family:'Caveat', cursive;
  font-size:1.5rem;
  color:var(--coral);
  margin-bottom:2px;
}
.section-head h2{
  font-size:2rem;
}
@media (max-width:640px){
  .section-head h2{font-size:1.5rem;}
}

/* ---------- ABOUT ---------- */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
@media (max-width:760px){
  .about-grid{grid-template-columns:1fr;}
}
.bio-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:32px 28px;
  box-shadow:var(--shadow);
  position:relative;
}
.bio-card .heart{
  position:absolute;
  top:22px; right:24px;
  color:var(--coral);
  font-size:1.2rem;
}
.bio-card h3{
  font-size:1.3rem;
  margin-bottom:4px;
}
.bio-card .role{
  font-family:'Caveat', cursive;
  color:var(--teal);
  font-size:1.15rem;
  font-weight:700;
  display:block;
  margin-bottom:14px;
}
.bio-card p{
  margin:0;
  color:var(--ink);
  font-size:0.98rem;
}

/* ---------- EPISODES ---------- */
.episodes-teaser{
  background:var(--navy);
  border-radius:var(--radius);
  padding:56px 32px;
  text-align:center;
  color:var(--sand);
  box-shadow:var(--shadow);
}
.episodes-teaser .script{
  font-size:2.2rem;
  display:block;
  margin-bottom:6px;
}
.episodes-teaser h3{
  color:var(--white);
  font-size:1.6rem;
  margin-bottom:16px;
}
.episodes-teaser p{
  max-width:520px;
  margin:0 auto 8px;
  color:rgba(246,237,224,0.85);
}
.chair-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:26px;
}
.chair-tags span{
  background:rgba(246,237,224,0.1);
  border:1px solid rgba(246,237,224,0.25);
  color:var(--sand);
  padding:8px 16px;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:500;
}

/* ---------- FOLLOW ---------- */
.follow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
@media (max-width:760px){
  .follow-grid{grid-template-columns:repeat(2,1fr);}
}
.follow-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:26px 18px;
  text-align:center;
  text-decoration:none;
  box-shadow:var(--shadow);
  transition:transform 0.2s ease;
  display:block;
}
.follow-card:hover{transform:translateY(-4px);}
.follow-card .icon{
  width:44px; height:44px;
  margin:0 auto 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--sand);
  color:var(--coral);
}
.follow-card .icon svg{width:22px; height:22px;}
.follow-card .platform{
  font-weight:600;
  color:var(--navy);
  font-size:0.95rem;
}
.follow-card .handle{
  font-size:0.8rem;
  color:var(--navy-soft);
  opacity:0.7;
}

/* ---------- SHOP TEASER (used once WooCommerce is active) ---------- */
.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media (max-width:760px){
  .shop-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:520px){
  .shop-grid{grid-template-columns:1fr;}
}
.product{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  text-align:center;
}
.product img{display:block; width:100%; aspect-ratio:1/1; object-fit:cover;}
.product .product-info{padding:18px;}
.product .price{
  color:var(--coral-deep);
  font-weight:600;
  margin:6px 0 12px;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button{
  background:var(--coral) !important;
  color:var(--white) !important;
  border-radius:999px !important;
  border:none !important;
  font-weight:600 !important;
  padding:10px 22px !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover{
  background:var(--coral-deep) !important;
}
.woocommerce-page .price{color:var(--coral-deep) !important;}

/* ---------- CONTACT / FOOTER ---------- */
.contact-band{
  background:var(--coral);
  color:var(--white);
  text-align:center;
  padding:60px 24px;
}
.contact-band .script{
  color:var(--white);
  font-size:2rem;
  display:block;
}
.contact-band h2{
  color:var(--white);
  font-size:1.8rem;
  margin-bottom:14px;
}
.contact-band p{
  max-width:480px;
  margin:0 auto 22px;
  color:rgba(255,250,243,0.9);
}
.contact-band .btn-primary{
  background:var(--navy);
  box-shadow:0 8px 20px rgba(22,35,60,0.35);
}
.contact-band .btn-primary:hover{background:var(--navy-soft);}

.site-footer{
  background:var(--navy);
  color:rgba(246,237,224,0.6);
  text-align:center;
  padding:30px 24px;
  font-size:0.85rem;
}
.site-footer .logo-mini{
  height:30px; width:30px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:10px;
}

/* generic page content (non-front-page) */
.page-content{
  padding:60px 0;
}
.page-content h1{font-size:2rem; margin-bottom:24px;}

/* reveal on scroll */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
