/* Inter Font Configuration for RAG Kunstakademiet */

/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Global font configuration */
* {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

/* Body font smoothing for better Inter rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv11', 'ss01';
    font-variation-settings: 'slnt' 0;
}

/* Headings with improved letter spacing for Inter */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.025em;
}

/* Optimize Inter for different weights */
.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

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

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

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

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}

/* Inter-specific improvements for buttons and form elements */
button, input, select, textarea {
    font-feature-settings: 'cv11', 'ss01';
}

/* Logo text optimization */
.logo-text {
    font-weight: 900;
    letter-spacing: -0.05em;
    font-feature-settings: 'cv11', 'ss01';
}
