/* ===================================
   Typography Styles
   =================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Lato:wght@400&family=Playfair+Display:ital,wght@1,400&display=swap');

/* Base Typography - Lato Regular 400 */
body {
  font-family: 'Lato', system-ui, sans-serif;
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-normal);
  color: var(--color-charcoal);
  letter-spacing: var(--letter-spacing-normal);
}

/* Headings - Montserrat Semi Bold 600 */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--color-navy);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-5xl);
  letter-spacing: var(--letter-spacing-tight);
}

h2 {
  font-size: var(--font-size-4xl);
  letter-spacing: var(--letter-spacing-tight);
}

h3 {
  font-size: var(--font-size-2xl);
  letter-spacing: var(--letter-spacing-normal);
}

h4 {
  font-size: var(--font-size-xl);
  letter-spacing: var(--letter-spacing-normal);
}

h5 {
  font-size: var(--font-size-lg);
  letter-spacing: var(--letter-spacing-normal);
}

h6 {
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

/* Paragraphs - Lato Regular 400 */
p {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-relaxed);
}

/* Links */
a {
  color: var(--color-navy);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold);
}

/* Strong and emphasis */
strong, b {
  font-weight: var(--font-weight-bold);
}

em, i {
  font-style: italic;
}

/* Small text */
small {
  font-size: var(--font-size-sm);
}

/* Responsive Typography - Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: var(--font-size-4xl);
  }
  
  h2 {
    font-size: var(--font-size-3xl);
  }
  
  h3 {
    font-size: var(--font-size-xl);
  }
  
  h4 {
    font-size: var(--font-size-lg);
  }
}

/* Responsive Typography - Mobile */
@media (max-width: 768px) {
  body {
    font-size: var(--font-size-sm);
  }
  
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
  
  h3 {
    font-size: var(--font-size-lg);
  }
  
  h4 {
    font-size: var(--font-size-base);
  }
  
  h5 {
    font-size: var(--font-size-base);
  }
  
  h6 {
    font-size: var(--font-size-sm);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

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

.text-navy {
  color: var(--color-navy);
}

.text-white {
  color: var(--color-white);
}

.text-grey {
  color: var(--color-grey);
}

.font-heading {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
}

.font-primary {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
}

/* Premium Highlight / Tagline - Playfair Display Italic */
.hero__tagline,
.tagline,
.highlight,
.premium-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.letter-spacing-wide {
  letter-spacing: var(--letter-spacing-wide);
}

.letter-spacing-wider {
  letter-spacing: var(--letter-spacing-wider);
}
