/**
* @license
*
* Font Family: Clash Display
* Designed by: Indian Type Foundry
* URL: https://www.fontshare.com/fonts/clash-display
* © 2026 Indian Type Foundry
*
* Clash Display Extralight 
* Clash Display Light 
* Clash Display Regular 
* Clash Display Medium 
* Clash Display Semibold 
* Clash Display Bold 
* Clash Display Variable (Variable font)

*
*/
@font-face {
  font-family: 'ClashDisplay-Extralight';
  src: url('../fonts/ClashDisplay-Extralight.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Extralight.woff') format('woff'),
       url('../fonts/ClashDisplay-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Light';
  src: url('../fonts/ClashDisplay-Light.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Light.woff') format('woff'),
       url('../fonts/ClashDisplay-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Regular';
  src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Regular.woff') format('woff'),
       url('../fonts/ClashDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Medium';
  src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Medium.woff') format('woff'),
       url('../fonts/ClashDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Semibold';
  src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Semibold.woff') format('woff'),
       url('../fonts/ClashDisplay-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Bold';
  src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Bold.woff') format('woff'),
       url('../fonts/ClashDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 700.0;
*
* available axes:
'wght' (range from 200.0 to 700.0
*/
@font-face {
  font-family: 'ClashDisplay-Variable';
  src: url('../fonts/ClashDisplay-Variable.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Variable.woff') format('woff'),
       url('../fonts/ClashDisplay-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

/* Utility Classes for Clash Display Font */

/* Base Clash Display class */
.font-clash {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Individual weight classes */
.font-clash-extralight {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;

}

.font-clash-light {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.font-clash-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-clash-medium {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.font-clash-semibold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.font-clash-bold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Variable font with custom weights */
.font-clash-variable {
  font-family: 'ClashDisplay-Variable', sans-serif;
}

/* Specific weight variations using variable font */
.font-clash-200 {
  font-family: 'ClashDisplay-Variable', sans-serif;
  font-variation-settings: 'wght' 200;
  font-weight: 200;
}

.font-clash-300 {
  font-family: 'ClashDisplay-Variable', sans-serif;
  font-variation-settings: 'wght' 300;
  font-weight: 300;
}

.font-clash-400 {
  font-family: 'ClashDisplay-Variable', sans-serif;
  font-variation-settings: 'wght' 400;
  font-weight: 400;
}

.font-clash-500 {
  font-family: 'ClashDisplay-Variable', sans-serif;
  font-variation-settings: 'wght' 500;
  font-weight: 500;
}

.font-clash-600 {
  font-family: 'ClashDisplay-Variable', sans-serif;
  font-variation-settings: 'wght' 600;
  font-weight: 600;
}

.font-clash-700 {
  font-family: 'ClashDisplay-Variable', sans-serif;
  font-variation-settings: 'wght' 700;
  font-weight: 700;
}

/* Typography combinations for common use cases */
.clash-heading-xl {
  font-family: 'ClashDisplay-Bold', 'ClashDisplay-Variable', sans-serif;
  font-weight: 700;
  font-size: 3.75rem; /* 60px */
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.clash-heading-lg {
  font-family: 'ClashDisplay-Semibold', 'ClashDisplay-Variable', sans-serif;
  font-weight: 600;
  font-size: 3rem; /* 48px */
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.clash-heading-md {
  font-family: 'ClashDisplay-Semibold', 'ClashDisplay-Variable', sans-serif;
  font-weight: 600;
  font-size: 2.25rem; /* 36px */
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.clash-heading-sm {
  font-family: 'ClashDisplay-Medium', 'ClashDisplay-Variable', sans-serif;
  font-weight: 500;
  font-size: 1.875rem; /* 30px */
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.clash-title {
  font-family: 'ClashDisplay-Medium', 'ClashDisplay-Variable', sans-serif;
  font-weight: 500;
  font-size: 1.5rem; /* 24px */
  line-height: 1.4;
}

.clash-subtitle {
  font-family: 'ClashDisplay-Regular', 'ClashDisplay-Variable', sans-serif;
  font-weight: 400;
  font-size: 1.25rem; /* 20px */
  line-height: 1.5;
}

.clash-body {
  font-family: 'ClashDisplay-Regular', 'ClashDisplay-Variable', sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1.6;
}

.clash-caption {
  font-family: 'ClashDisplay-Light', 'ClashDisplay-Variable', sans-serif;
  font-weight: 300;
  font-size: 0.875rem; /* 14px */
  line-height: 1.5;
}

/* Responsive typography */
@media (max-width: 768px) {
  .clash-heading-xl {
    font-size: 2.5rem; /* 40px */
  }
  
  .clash-heading-lg {
    font-size: 2rem; /* 32px */
  }
  
  .clash-heading-md {
    font-size: 1.75rem; /* 28px */
  }
  
  .clash-heading-sm {
    font-size: 1.5rem; /* 24px */
  }
}

/* Display utilities for special effects */
.clash-display {
  font-family: 'ClashDisplay-Bold', 'ClashDisplay-Variable', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.clash-hero {
  font-family: 'ClashDisplay-Bold', 'ClashDisplay-Variable', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

