/*
Theme Name: Câmara Municipal
Theme URI: https://marcosferreira.github.io/camara-municipal/
Author: Marcos Ferreira
Author URI: https://marcosferreira.github.io/
Description: Tema para o website institucional da câmara municipal.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: camara-municipal
*/

:root {
    --primary-color: rgb(0, 142, 167);
    --primary-color-hover: rgb(0, 169, 199);
}

.primary-text-color {
    color: var(--primary-color);
}

.primary-text-color:hover {
    color: var(--primary-color-hover);
}

.primary-bg-color {
    background-color: var(--primary-color);
}

.primary-bg-color-hover:hover {
    background-color: var(--primary-color-hover);
}



/* Configuração global da fonte */
html {
    font-size: 90%;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Configurações específicas de peso da fonte */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

#govbar a {
    font-size: 0.7rem;
}

#govbar > a > i {
    font-size: 1.2rem;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ENTRY-CONTENT: style to paragraph in context text */
.entry-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 1em;
}


@media (max-width: 768px) {
    
    .nav-menu {
        display: none;
    }

    .mobile-menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1e40af; /* bg-blue-800 */
        padding: 1rem;
        z-index: 50;
    }

    .mobile-menu-active {
        display: block !important;
    }

    .mobile-menu-items li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-items li:last-child {
        border-bottom: none;
    }

    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
}