/*
Theme Name: Alicia Reneé
Theme URI: https://southernbellejubilee.com
Author: Alicia Reneé
Author URI: https://southernbellejubilee.com
Description: A luxe, editorial lifestyle and home blog theme for Alicia Reneé. Southern Belle Jubilee.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alicia-renee
Tags: blog, lifestyle, custom-colors, custom-logo, featured-images, full-width-template
*/

/* ─────────────────────────────────────────
   BRAND TOKENS
───────────────────────────────────────── */
:root {
  --navy:       #1B2A4A;
  --burgundy:   #6B2737;
  --gold:       #A8885A;
  --gold-lt:    #C4A97A;
  --cream:      #F5F0E8;
  --cream-dark: #EEE6D8;
  --slate:      #4A5568;
  --muted:      #9BAABF;
  --white:      #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-tag:     'Cormorant Garamond', serif;
  --font-body:    'Lato', sans-serif;

  --max-width: 1160px;
  --radius: 4px;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--slate);
  background: var(--white);
  line-height: 1.8;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: .5px;
}

p { margin-bottom: 1.4rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1.4rem; }

blockquote {
  font-family: var(--font-tag);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding: .5rem 0 .5rem 1.4rem;
  margin: 2rem 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-rule {
  display: block;
  height: 1px;
  background: var(--gold);
  width: 56px;
  margin: 1rem auto;
  border: none;
}

.btn {
  display: inline-block;
  padding: .65rem 1.8rem;
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--gold); color: var(--white); }

.btn-cream {
  border-color: var(--cream);
  color: var(--cream);
}
.btn-cream:hover { background: var(--cream); color: var(--navy); }

/* ─────────────────────────────────────────
   SITE HEADER & NAV
───────────────────────────────────────── */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(27,42,74,.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo { text-decoration: none; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.logo-rule {
  display: block;
  height: 1px;
  background: var(--gold);
  width: 44px;
  margin: 4px 0;
}
.logo-tagline {
  font-family: var(--font-tag);
  font-style: italic;
  font-weight: 300;
  font-size: .75rem;
  letter-spacing: 1px;
  color: var(--gold);
  display: block;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0; margin: 0;
}
.main-nav a {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--slate);
  transition: color .2s;
}
.main-nav a:hover,
.main-nav .current-menu-item a { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--navy);
  transition: all .3s;
}

/* ─────────────────────────────────────────
   HERO SECTION (homepage)
───────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bluebonnets {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,42,74,.52);
  pointer-events: none;
  z-index: 1;
}

.hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

.hero .eyebrow { color: var(--gold-lt); margin-bottom: 1.2rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: .5px;
}

.hero-origin {
  font-family: var(--font-tag);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--gold-lt);
  opacity: .75;
  margin-top: .5rem;
  display: block;
}

.hero-origin-rule {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin: 1.1rem auto .2rem;
  max-width: 320px;
}
.hero-origin-rule::before,
.hero-origin-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(168,136,90,.3);
}

.hero-excerpt {
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin: 1.4rem auto 0;
  line-height: 1.9;
}

.hero-actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   POSTS GRID
───────────────────────────────────────── */
.posts-section { padding: 4rem 0; background: var(--cream); }
.posts-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.posts-section-header h2 {
  font-size: 1.6rem;
  color: var(--navy);
}

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

.post-card {
  background: var(--white);
  border: 1px solid rgba(27,42,74,.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,42,74,.1);
}

.post-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.post-card-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(27,42,74,.3);
}

.post-card-body { padding: 1.2rem 1.4rem 1.5rem; }
.post-card-cat {
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: .5rem;
}
.post-card-title a { color: var(--navy); }
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt {
  font-size: .82rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: .8rem;
}
.post-card-meta {
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .5px;
}

/* ─────────────────────────────────────────
   FEATURED POST (full-width strip)
───────────────────────────────────────── */
.featured-strip {
  background: var(--navy);
  padding: 3.5rem 2rem;
}
.featured-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.featured-strip-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.featured-strip-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.featured-strip-content .eyebrow { color: var(--gold-lt); margin-bottom: 1rem; }
.featured-strip-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.featured-strip-content p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────── */
.single-post-hero {
  background: var(--navy);
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.single-post-hero .eyebrow { color: var(--gold-lt); margin-bottom: 1rem; }
.single-post-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--cream);
  max-width: 680px;
  margin: 0 auto .8rem;
}
.single-post-hero .post-meta {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: 1px;
}

.post-content-wrap {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.post-content-wrap h2 { font-size: 1.5rem; margin: 2rem 0 .8rem; }
.post-content-wrap h3 { font-size: 1.2rem; margin: 1.6rem 0 .6rem; }
.post-content-wrap p  { font-size: .95rem; line-height: 1.9; color: var(--slate); }

.post-drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  float: left;
  line-height: .8;
  margin: .05em .1em 0 0;
  color: var(--burgundy);
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-hero {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
}
.about-hero h1 { color: var(--cream); font-size: clamp(1.8rem, 4vw, 3rem); }
.about-hero p  { color: var(--muted); max-width: 520px; margin: 1rem auto 0; font-size: .9rem; }

.about-body {
  max-width: 860px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: start;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(27,42,74,.3);
}
.about-text h2 { font-size: 1.5rem; margin-bottom: .8rem; }
.about-text p  { font-size: .92rem; line-height: 1.9; margin-bottom: 1.2rem; }

.about-values {
  background: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
}
.about-values h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
}
.value-card {
  padding: 1.8rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(27,42,74,.07);
  border-radius: var(--radius);
}
.value-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.value-card p  { font-size: .83rem; color: var(--slate); line-height: 1.75; margin: 0; }

/* ─────────────────────────────────────────
   FAQ PAGE
───────────────────────────────────────── */
.faq-hero {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
}
.faq-hero h1 { color: var(--cream); }
.faq-hero p  { color: var(--muted); max-width: 480px; margin: .8rem auto 0; font-size: .9rem; }

.faq-body {
  max-width: 760px;
  margin: 3.5rem auto 5rem;
  padding: 0 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(27,42,74,.1);
  padding: 1.4rem 0;
}
.faq-item:first-child { border-top: 1px solid rgba(27,42,74,.1); }

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding-top: 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-top: .9rem;
}

/* ─────────────────────────────────────────
   SIDEBAR (optional, for blog listing)
───────────────────────────────────────── */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 3rem auto;
  padding: 0 2rem;
}

.sidebar-widget { margin-bottom: 2.5rem; }
.sidebar-widget h3 {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(168,136,90,.3);
}
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li {
  padding: .4rem 0;
  border-bottom: 1px solid rgba(27,42,74,.06);
  font-size: .85rem;
}
.sidebar-widget ul li a { color: var(--slate); }
.sidebar-widget ul li a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   PAGINATION
───────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 2.5rem 0 3rem;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(27,42,74,.15);
  font-size: .8rem;
  color: var(--slate);
  border-radius: var(--radius);
  transition: all .2s;
}
.pagination a:hover,
.pagination .current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

/* ─────────────────────────────────────────
   NEWSLETTER STRIP
───────────────────────────────────────── */
.newsletter-strip {
  background: var(--cream-dark);
  padding: 4rem 2rem;
  text-align: center;
}
.newsletter-strip h2 { font-size: 1.6rem; margin-bottom: .5rem; }
.newsletter-strip p  { font-size: .88rem; color: var(--slate); margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: .6rem;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: .65rem 1rem;
  border: 1px solid rgba(27,42,74,.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--navy);
  outline: none;
  border-radius: var(--radius);
}
.newsletter-form input[type="email"]::placeholder { color: var(--muted); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }

/* ─────────────────────────────────────────
   SITE FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-name { color: var(--cream); font-size: 1.1rem; }
.footer-brand .logo-tagline { color: var(--gold-lt); }
.footer-brand p {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 1.2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: rgba(155,170,191,.5);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-strip-inner { grid-template-columns: 1fr; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-body { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-top: 1px solid rgba(27,42,74,.1); padding: 1rem 2rem 1.5rem; }
  .main-nav.open ul { flex-direction: column; gap: 1rem; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
}
