/* ============================================================
   LUXAVIRO - Fonts Stylesheet
   Google Fonts + Typography Utilities
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Josefin+Sans:wght@300;400;600;700&display=swap');

/* ===== FONT UTILITY CLASSES ===== */

.lx-font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

.lx-font-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.lx-font-ui {
  font-family: 'Josefin Sans', sans-serif;
}

/* Weight helpers */
.lx-fw-300 { font-weight: 300; }
.lx-fw-400 { font-weight: 400; }
.lx-fw-600 { font-weight: 600; }
.lx-fw-700 { font-weight: 700; }
.lx-fw-900 { font-weight: 900; }

/* Style helpers */
.lx-italic { font-style: italic; }

/* Size scale */
.lx-text-xs  { font-size: 0.72rem; }
.lx-text-sm  { font-size: 0.875rem; }
.lx-text-md  { font-size: 1rem; }
.lx-text-lg  { font-size: 1.15rem; }
.lx-text-xl  { font-size: 1.4rem; }
.lx-text-2xl { font-size: 1.75rem; }
.lx-text-3xl { font-size: 2.25rem; }
.lx-text-4xl { font-size: 3rem; }
.lx-text-5xl { font-size: 4rem; }

/* Tracking */
.lx-tracking-wide    { letter-spacing: 0.1em; }
.lx-tracking-wider   { letter-spacing: 0.2em; }
.lx-tracking-widest  { letter-spacing: 0.35em; }

/* Line height */
.lx-leading-tight  { line-height: 1.1; }
.lx-leading-snug   { line-height: 1.35; }
.lx-leading-normal { line-height: 1.6; }
.lx-leading-loose  { line-height: 1.85; }

/* Text transform */
.lx-uppercase { text-transform: uppercase; }
.lx-lowercase { text-transform: lowercase; }
.lx-capitalize { text-transform: capitalize; }

/* Color helpers */
.lx-text-white   { color: var(--lx-white) !important; }
.lx-text-gray    { color: var(--lx-gray) !important; }
.lx-text-gold    { color: var(--lx-accent) !important; }
.lx-text-muted   { color: var(--lx-gray-light) !important; }

/* ===== DISPLAY HEADING STYLES ===== */

.lx-display-1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.lx-display-2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
}

.lx-heading-section {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}

.lx-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lx-accent);
}

.lx-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--lx-gray-light);
  line-height: 1.65;
}

/* ===== ARTICLE TYPOGRAPHY ===== */

.lx-article-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--lx-white-2);
  margin-bottom: 32px;
}

.lx-article-body-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--lx-text);
}

/* ===== DECORATIVE TEXT EFFECTS ===== */

.lx-text-gradient {
  background: linear-gradient(135deg, #c9a84c 0%, #f5e6bb 50%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lx-text-outline {
  -webkit-text-stroke: 1px rgba(201,168,76,0.5);
  color: transparent;
}

/* ===== RESPONSIVE FONT ADJUSTMENTS ===== */

@media (max-width: 768px) {
  .lx-display-1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .lx-display-2 { font-size: clamp(2rem, 7vw, 3rem); }
  .lx-heading-section { font-size: clamp(1.5rem, 5vw, 2.2rem); }
}
