/* Font Declarations - Complete TildaSans Family */
@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-VF.woff2') format('woff2-variations');
    src: url('../fonts/TildaSans-VF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Static font fallbacks for better browser compatibility */
@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Light.woff2') format('woff2'),
         url('../fonts/TildaSans-Light.woff') format('woff'),
         url('../fonts/TildaSans-Light.eot') format('embedded-opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Regular.woff2') format('woff2'),
         url('../fonts/TildaSans-Regular.woff') format('woff'),
         url('../fonts/TildaSans-Regular.eot') format('embedded-opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Medium.woff2') format('woff2'),
         url('../fonts/TildaSans-Medium.woff') format('woff'),
         url('../fonts/TildaSans-Medium.eot') format('embedded-opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Semibold.woff2') format('woff2'),
         url('../fonts/TildaSans-Semibold.woff') format('woff'),
         url('../fonts/TildaSans-Semibold.eot') format('embedded-opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Bold.woff2') format('woff2'),
         url('../fonts/TildaSans-Bold.woff') format('woff'),
         url('../fonts/TildaSans-Bold.eot') format('embedded-opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Extrabold.woff2') format('woff2'),
         url('../fonts/TildaSans-Extrabold.woff') format('woff'),
         url('../fonts/TildaSans-Extrabold.eot') format('embedded-opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Black.woff2') format('woff2'),
         url('../fonts/TildaSans-Black.woff') format('woff'),
         url('../fonts/TildaSans-Black.eot') format('embedded-opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    --primary-blue: #2a87ed;
    --secondary-gray: #2d2d2d;
    --emergency-red: #ff3b30;
    --text-dark: #333333;
    --text-light: #ffffff;
    --spacing-unit: 1rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TildaSans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
}
