/*
Theme Name: DCN - Distrito Cultural Norte
Author: EmComum
Description: Tema personalizado estilo Mosaico para o DCN.
Version: 1.0
*/

:root {
    --primary-blue: #87CEEB; /* Azul Claro */
    --primary-gold: #FFD700; /* Amarelo Ouro */
    --bg-color: #fdfdfd;
    --text-color: #333;
    --credit-red: #ff0000;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
header.site-header {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border-bottom: 4px solid var(--primary-gold);
}

.logo-sigla {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

.logo-extenso {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #555;
    margin-top: 0.5rem;
}

/* Mosaico (Front Page) */
.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile First: 1 coluna */
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    background: #eee;
}

.mosaic-item:hover {
    transform: translateY(-5px);
}

.mosaic-item img {
    width: 100%;
    height: 300px; /* Altura fixa para uniformidade ou auto para masonry */
    object-fit: cover;
    display: block;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 215, 0, 0.9); /* Ouro com transparência */
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
    opacity: 0.9; /* Sempre visível no mobile ou 0 para hover effect */
}

/* Páginas Internas */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
}

/* Footer */
footer.site-footer {
    background: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #ddd;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #555;
}

.credits {
    margin-top: 20px;
    font-size: 0.9rem;
}

.credit-emcomum {
    font-weight: bold;
}

.credit-emcomum span {
    color: var(--credit-red);
}

.credit-secondary {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #777;
}

a { text-decoration: none; color: inherit; }
/* Footer Styles */
footer.site-footer {
    background: #f4f4f4; /* Fundo cinza claro */
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    width: 100%;
    clear: both;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.8rem; /* Tamanho dos ícones */
    color: #555;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #87CEEB; /* Azul ao passar o mouse */
}

.credits {
    font-size: 0.9rem;
    line-height: 1.6;
}

.credit-emcomum {
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

.credit-emcomum a {
    text-decoration: none;
    color: inherit;
}

.credit-emcomum span {
    color: #ff0000; /* "COMUM" em vermelho */
}

.credit-secondary {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #777;
}