/* ========================================
   ChickIn - Typography
   Fuentes personalizadas y clases tipográficas especiales
   ======================================== */

/* League Spartan - Tipografía principal */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/brand-elements/LeagueSpartan-Regular.woff2') format('woff2'),
       url('../assets/brand-elements/LeagueSpartan-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('../assets/brand-elements/LeagueSpartan-Medium.woff2') format('woff2'),
       url('../assets/brand-elements/LeagueSpartan-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('../assets/brand-elements/LeagueSpartan-SemiBold.woff2') format('woff2'),
       url('../assets/brand-elements/LeagueSpartan-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('../assets/brand-elements/LeagueSpartan-Bold.woff2') format('woff2'),
       url('../assets/brand-elements/LeagueSpartan-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('../assets/brand-elements/LeagueSpartan-ExtraBold.woff2') format('woff2'),
       url('../assets/brand-elements/LeagueSpartan-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Rock Salt - Solo para slogans y detalles especiales */
@font-face {
  font-family: 'Rock Salt';
  src: url('../assets/brand-elements/RockSalt-Regular.woff2') format('woff2'),
       url('../assets/brand-elements/RockSalt-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Clases tipográficas especiales */
.text-hero {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-display {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
}

.text-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-body {
  font-size: 1rem;
  line-height: 1.6;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-tiny {
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Slogan especial con Rock Salt */
.text-slogan {
  font-family: 'Rock Salt', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--chickin-orange);
}

.text-slogan-small {
  font-family: 'Rock Salt', cursive;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

/* Utilidades tipográficas */
.text-center {
  text-align: center;
}

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

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-bold {
  font-weight: 700;
}

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

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

.text-primary {
  color: var(--chickin-orange);
}

.text-secondary {
  color: var(--chickin-anthracite);
}

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

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

/* Responsive typography */
@media (max-width: 768px) {
  .text-hero {
    font-size: 2.5rem;
  }
  
  .text-display {
    font-size: 2.25rem;
  }
  
  .text-title {
    font-size: 2rem;
  }
  
  .text-subtitle {
    font-size: 1.5rem;
  }
  
  .text-slogan {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .text-hero {
    font-size: 2rem;
  }
  
  .text-display {
    font-size: 1.875rem;
  }
  
  .text-title {
    font-size: 1.75rem;
  }
  
  .text-subtitle {
    font-size: 1.25rem;
  }
  
  .text-slogan {
    font-size: 1rem;
  }
}
