/* Typography - Font Imports and Text Styles */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Inter:wght@300;400;500;600&display=swap');

/* Typography Variables */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Base Typography */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: 3rem;
  letter-spacing: 3px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: 1.5px;
}

h4 {
  font-size: 1.375rem;
  letter-spacing: 1px;
}

h5 {
  font-size: 1.125rem;
  letter-spacing: 0.75px;
}

h6 {
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Hero Typography */
.hero h1 {
  font-size: 4.5rem;
  letter-spacing: 4px;
  font-weight: 300;
}

/* Special Typography Classes */
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.text-light {
  font-weight: 300;
}

.text-medium {
  font-weight: 500;
}

.text-semibold {
  font-weight: 600;
}

/* Responsive Typography */
@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .hero h1 {
    font-size: 3rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  h2 {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
