/**
 * Global Typography - Modern Inter Font
 */

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

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #CCCCCC;
    background-color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

h1, .h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2, .h2 {
    font-size: 2.25rem;
    font-weight: 600;
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4, .h4 {
    font-size: 1.375rem;
    font-weight: 600;
}

h5, .h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================
   PARAGRAPHS & TEXT
   ============================================ */

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
}

.small,
small {
    font-size: 0.875rem;
}

/* ============================================
   LINKS
   ============================================ */

a {
    color: var(--color-primary, #C19A6B);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #B8860B;
}

/* ============================================
   BUTTONS & INPUTS
   ============================================ */

button,
input,
select,
textarea {
    font-family: 'Inter', sans-serif;
}

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

.text-light {
    font-weight: 300;
}

.text-regular {
    font-weight: 400;
}

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

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

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

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

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2.25rem;
    }
    
    h2, .h2 {
        font-size: 1.875rem;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
    }
    
    h4, .h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    h1, .h1 {
        font-size: 2rem;
    }
    
    h2, .h2 {
        font-size: 1.625rem;
    }
    
    body {
        font-size: 0.9375rem;
    }
}

