/**
 * GLOBAL TYPOGRAPHY
 * Auto-Ankauf Website
 * 
 * Alle Heading- und Text-Styles basierend auf dem Design-System
 */

/* ==========================================
   FONT IMPORT
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap');


/* ==========================================
   BASE TYPOGRAPHY
   ========================================== */

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-paragraph);
  line-height: var(--line-height-auto);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ==========================================
   HEADINGS
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-auto);
  margin: 0;
  color: var(--color-white);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}


/* Size Override Classes */
.h2-style {
  font-size: var(--font-size-h2);
}


/* ==========================================
   ACCENT TEXT
   ========================================== */

.accent-text {
  font-size: var(--font-size-accent);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-auto);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}


/* ==========================================
   PARAGRAPHS
   ========================================== */

p {
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-auto);
  margin: 0;
  color: var(--color-white);
}

.paragraph-large {
  font-size: var(--font-size-paragraph-large);
  font-weight: var(--font-weight-regular);
}


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

/* Text Colors */
.text-white {
  color: var(--color-white);
}

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

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

/* Text Alignment */
.text-center {
  text-align: center;
}

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

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

/* Font Weights */
.font-regular {
  font-weight: var(--font-weight-regular);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}


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

/* Automatisch durch CSS Variables in variables.css gehandhabt */
