/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&Inter&Figtree:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
@import 'fonts.css';

/* Typography Variables */
:root {
    --font-display: 'Metropolis', sans-serif;
    --font-secondary: 'Figtree', sans-serif;
    --font-serif: 'Playfair Display', serif;
    /* --font-sans: 'Inter', sans-serif; */
    --font-sans: 'Source Sans Pro', sans-serif;
}

/* Base Typography */
body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
    body {
        font-size: 18px;
    }
}

/* Headings */
h1, .h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2, .h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h3, .h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.3;
}

/* Body Text */
p, .body-text {
    font-family: var(--font-sans);
    font-weight: 400;
}

strong, b, .text-bold {
    font-weight: 600;
}

/* Specific Elements */
.typewriter h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
}

#tema-principal h2,
#temas-destaque h2,
#datas-importantes h2,
#organizadores h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.carousel-item h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
}

/* Navigation and Buttons */
.nav-links a,
.btn,
button {
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Small Text and Labels */
.small-text,
.timeline-marker-label,
.modal p {
    font-size: 0.875rem;
    line-height: 1.4;
} 