/*
Theme Name: Oganpazan Modern
Theme URI: https://oganpazan.com.br/
Description: Um tema moderno, focado em notícias de música e cultura urbana, com design responsivo e dark mode nativo.
Author: Manus AI
Author URI: https://manus.im
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oganpazan-modern
*/

:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --accent-color: #FF4B2B;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-light: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Archivo Black', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: rgba(0,0,0,0.9);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-navigation a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* Bento Grid News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 40px;
}

.news-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-card);
}

.news-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-item:hover img {
    transform: scale(1.05);
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.news-category {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.2rem;
    margin: 0;
}

.featured .news-title {
    font-size: 2rem;
}
