/* ============================================================
   LOCALTHEME — main.css
   Colors: gold #f5a623 | dark #1a1a1a | cream #fef9e0 | white #fff
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --lt-gold:        #f5a623;
  --lt-gold-dark:   #d4891a;
  --lt-dark:        #1a1a1a;
  --lt-dark-2:      #2d2d2d;
  --lt-cream:       #fef9e0;
  --lt-cream-dark:  #f5efc0;
  --lt-white:       #ffffff;
  --lt-text:        #222222;
  --lt-text-light:  #666666;
  --lt-border:      #e8e8e8;
  --lt-radius:      10px;
  --lt-shadow:      0 4px 20px rgba(0,0,0,0.10);
}

/* ── Body ── */
body {
  font-family: 'Inter', sans-serif;
  color: var(--lt-text);
  background: var(--lt-white);
}

/* ── Buttons ── */
.lt-btn-gold {
  display: inline-block;
  background: var(--lt-gold);
  color: var(--lt-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 5px;
  transition: background 0.2s;
  letter-spacing: 0.2px;
}
.lt-btn-gold:hover {
  background: var(--lt-gold-dark);
  color: var(--lt-dark);
}

.lt-btn-dark {
  display: inline-block;
  background: var(--lt-dark);
  color: var(--lt-white);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 5px;
  transition: background 0.2s;
}
.lt-btn-dark:hover {
  background: var(--lt-dark-2);
  color: var(--lt-white);
}

/* ── Section Heading (italic serif style) ── */
.lt-section-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--lt-dark);
  text-align: center;
  margin-bottom: 36px;
}

.lt-section-heading-left {
  text-align: left;
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.lt-header-outer {
      width: 90%;
    margin: auto;
  background: var(--lt-dark);
      border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    border-right: 0.4rem solid var(--lt-gold);
    border-left: 0.4rem solid var(--lt-gold);
    border-bottom: 0.1rem solid var(--lt-gold);
}

.lt-header {
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 28px;
  gap: 20px;
}

.lt-logo {
  flex: 1;
  text-align: center;
}

.lt-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--lt-white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.lt-logo-text span {
  color: var(--lt-gold);
}

.lt-logo-img {
  max-height: 40px;
  width: auto;
  margin: 0 auto;
}

.lt-search-form {
  display: flex;
  align-items: center;
  background: var(--lt-dark);
  border: 1.5px solid var(--lt-gold);
  border-radius: 22px;
  padding: 4px 4px 4px 16px;
  gap: 8px;
  flex-shrink: 0;
}

.lt-search-form input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 150px;
  color: var(--lt-white);
  background: transparent;
}

.lt-search-form input::placeholder {
  color: #8a8a8a;
}

.lt-search-form button {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--lt-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-search-form svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--lt-white);
  stroke-width: 2;
}

/* ─────────────────────────────────────────────
   HERO CARDS (3 columns, image overlay)
───────────────────────────────────────────── */
.lt-hero {
  padding: 32px 0 0;
}

.lt-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.lt-hero-card {
  position: relative;
  border-radius: var(--lt-radius);
  overflow: hidden;
  height: 440px;
  background: var(--lt-dark);
}

.lt-hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.3s;
}

.lt-hero-card:hover .lt-hero-card-img {
  transform: scale(1.04);
  opacity: 0.8;
}

.lt-hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  padding: 20px 16px 16px;
}

.lt-hero-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--lt-white);
  line-height: 1.45;
  margin-bottom: 12px;
}

/* Placeholder when no image */
.lt-hero-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d2d2d 0%, #444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 48px;
}

/* ─────────────────────────────────────────────
   IN THE SPOTLIGHT
───────────────────────────────────────────── */
.lt-spotlight {
  padding: 56px 0 48px;
}

.lt-spotlight-card-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Decorative paper layers behind */
.lt-paper-stack {
  position: relative;
  width: 100%;
  max-width: 780px;
}

.lt-paper-layer {
  position: absolute;
  inset: -14px -10px;
  background: #e8e3d6;
  border-radius: 6px;
  transform: rotate(-1.5deg);
  z-index: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.lt-paper-layer-2 {
  inset: -8px -5px;
  background: #f0ece0;
  transform: rotate(0.8deg);
  z-index: 1;
}

.lt-spotlight-card {
  position: relative;
  z-index: 2;
  border-radius: var(--lt-radius);
  overflow: hidden;
  height: 400px;
  background: var(--lt-dark);
  box-shadow: var(--lt-shadow);
  width: 100%;
}

.lt-spotlight-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.lt-spotlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 55%;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.lt-spotlight-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--lt-white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.lt-spotlight-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────────
   CIRCLE ARTICLES (cream background)
───────────────────────────────────────────── */
.lt-circles {
  background: var(--lt-cream);
  padding: 56px 0;
}

.lt-circles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.lt-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.lt-circle-img-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--lt-cream-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.lt-circle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lt-circle-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.2);
  font-size: 40px;
}

.lt-circle-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lt-dark);
  line-height: 1.45;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────────
   TRENDING ARTICLES
───────────────────────────────────────────── */
.lt-trending {
  padding: 56px 0;
  background: var(--lt-white);
}

.lt-trending-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

/* Left — list */
.lt-trending-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lt-trending-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lt-trending-thumb {
  width: 120px;
  height: 120px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
}

.lt-trending-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lt-trending-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #c8c8c8 100%);
}

.lt-trending-info {
  flex: 1;
  min-width: 0;
}

.lt-trending-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lt-dark);
  line-height: 1.45;
  margin-bottom: 10px;
}

/* Right — featured card */
.lt-trending-featured {
  position: relative;
  border-radius: var(--lt-radius);
  overflow: hidden;
  height: 380px;
  background: var(--lt-dark);
}

.lt-trending-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.lt-trending-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  padding: 24px 20px 20px;
}

.lt-trending-featured-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lt-white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.lt-trending-featured-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.lt-footer {
  background: var(--lt-dark);
  padding: 40px 20px 24px;
}

.lt-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.lt-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--lt-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lt-footer-logo span {
  color: var(--lt-gold);
}

.lt-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.lt-footer-links a {
  font-size: 12.5px;
  color: var(--lt-gold);
  transition: color 0.2s;
}

.lt-footer-links a:hover {
  color: var(--lt-white);
}

.lt-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}

/* ─────────────────────────────────────────────
   ARTICLE DETAIL PAGE
───────────────────────────────────────────── */
.lt-article-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.lt-article-banner {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--lt-radius);
  margin-bottom: 32px;
}

.lt-article-category-tag {
  display: inline-block;
  background: var(--lt-gold);
  color: var(--lt-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.lt-article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--lt-dark);
  margin-bottom: 14px;
}

.lt-article-meta {
  font-size: 13px;
  color: var(--lt-text-light);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lt-border);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lt-article-excerpt {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.lt-article-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--lt-text);
}

.lt-article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--lt-dark);
}

.lt-article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--lt-dark);
}

.lt-article-body p {
  margin-bottom: 20px;
}

.lt-article-body ul,
.lt-article-body ol {
  margin: 0 0 20px 24px;
  list-style: revert;
}

.lt-article-body li {
  margin-bottom: 8px;
}

.lt-article-body blockquote {
  border-left: 4px solid var(--lt-gold);
  padding: 14px 20px;
  margin: 28px 0;
  background: var(--lt-cream);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

.lt-article-body img {
  border-radius: 8px;
  margin: 28px auto;
}

.lt-article-body a {
  color: var(--lt-gold-dark);
  text-decoration: underline;
}

/* ─────────────────────────────────────────────
   CATEGORY PAGE
───────────────────────────────────────────── */
.lt-cat-header {
  padding: 48px 20px 24px;
  text-align: center;
  margin-bottom: 40px;
}

.lt-cat-header h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--lt-dark);
  margin-bottom: 8px;
}

.lt-cat-header p {
  font-size: 14px;
  color: var(--lt-text-light);
}

.lt-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.lt-cat-card {
  border-radius: var(--lt-radius);
  overflow: hidden;
  background: var(--lt-white);
  box-shadow: var(--lt-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lt-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.lt-cat-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #eee;
}

.lt-cat-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
}

.lt-cat-card-body {
  padding: 18px 16px;
}

.lt-cat-card-tag {
  display: inline-block;
  background: var(--lt-gold);
  color: var(--lt-dark);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.lt-cat-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lt-dark);
  line-height: 1.45;
  margin-bottom: 14px;
}

.lt-cat-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--lt-text-light);
  font-size: 15px;
}
