/* Modern Premium Fonts - 2025 Edition */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* Font Variables */
:root {
    --font-primary: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-display: 'Montserrat', sans-serif;
    --font-serif: 'Crimson Text', Georgia, serif;
}

/* Base Typography */
body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 3rem);
}

h3 {
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 2rem);
}

/* Special Typography Classes */
.font-primary {
    font-family: var(--font-primary);
}

.font-display {
    font-family: var(--font-display);
}

.font-serif {
    font-family: var(--font-serif);
}

/* Modern Text Styles */
.text-modern {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.heading-modern {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.text-elegant {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.7;
}

/* Button Typography */
button, .btn {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Navigation Typography */
nav a {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Card and Content Typography */
.card-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.card-text {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
}

/* Premium Typography Effects */
.text-gradient {
    background: linear-gradient(135deg, #C79738, #8b6a27);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
    font-weight: 700;
}

.text-shadow-soft {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.text-shadow-strong {
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive Typography */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

/* Enhanced Readability */
p {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: #374151;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Premium List Styling */
ul li, ol li {
    font-family: var(--font-primary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Form Typography */
input, textarea, select {
    font-family: var(--font-primary);
    font-weight: 400;
}

label {
    font-family: var(--font-primary);
    font-weight: 500;
}

/* Table Typography */
table {
    font-family: var(--font-primary);
}

th {
    font-weight: 600;
    font-family: var(--font-display);
}

/* Quote and Testimonial Styling */
blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Modern Link Styling */
a {
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Loading and Animation Text */
.loading-text {
    font-family: var(--font-primary);
    font-weight: 400;
    opacity: 0.7;
}
