/* -------------------------------
   Typography
   Text styles and headings
---------------------------------*/

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

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

/* -------------------------------
   Headings - Base Styles
--------------------------------- */

/* Headings padrão (conteúdo interno de posts) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    color: #e0e0e0; /* ← CINZA para headings gerais */
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 14px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

/* -------------------------------
   Paragraphs & Text
--------------------------------- */

p {
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Links */
a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

/* -------------------------------
   Post Meta (Author, Date)
--------------------------------- */

.post-meta {
    font-family: 'Inter', sans-serif;
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

/* -------------------------------
   Single Post Styles
--------------------------------- */

.single-post h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #e0e0e0;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Featured images */
.featured-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* -------------------------------
   Post Content Typography
--------------------------------- */

.post-content {
    font-family: 'Inter', sans-serif;
    color: #d1d1d1;
    line-height: 1.7;
    font-weight: 400;
}

.post-content p {
    margin-bottom: 1.1em;
    line-height: 1.7;
    color: #d1d1d1;
}

/* Post content headings (dentro do conteúdo do post) */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: 'Sora', sans-serif;
    color: #D4AF37; /* ← DOURADO para headings dentro de posts */
    margin-top: 24px;
    margin-bottom: 12px;
}

.post-content h1,
.post-content h2 {
    font-weight: 800;
    letter-spacing: 0.01em;
}

/* -------------------------------
   Excerpts & Widgets
--------------------------------- */

.post-excerpt {
    font-family: 'Inter', sans-serif;
    color: #d1d1d1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.widget h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    color: #D4AF37; /* ← DOURADO para títulos de widgets */
}

/* -------------------------------
   Component-Specific Typography
--------------------------------- */

/* News item titles */
.news-item h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0em;
    color: #e0e0e0; /* ← CINZA claro */
}

/* YouTube video titles */
.youtube-content h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #e0e0e0; /* ← CINZA claro */
}

/* -------------------------------
   UI Elements Typography
--------------------------------- */

/* Button text */
button,
.button,
.btn {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Navigation menu */
#main-nav .menu li a {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Footer text */
#site-footer {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* -------------------------------
   Responsive Typography
--------------------------------- */

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    body {
        font-size: 15px;
        line-height: 1.6;
    }
    
    p {
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
        letter-spacing: 0em;
    }
    
    h2 {
        font-size: 1.3rem;
        letter-spacing: 0em;
    }
    
    body {
        font-size: 14px;
    }
}