/*
Theme Name: Honduras Hoy
Theme URI: https://hondurashoy.hn
Author: Honduras Hoy Team
Description: Tema personalizado para el diario digital Honduras Hoy, enfocado en velocidad y diseño premium.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: honduras-hoy
*/

/* --- CONFIGURACIÓN BASE --- */

/* Importar la fuente Inter desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');

body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}

/* --- ESTILOS COMPLEMENTARIOS (Para el diseño Tailwind) --- */

/* Reset de márgenes para WordPress */

{
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Ocultar barra de scroll en elementos específicos si es necesario */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}

/* Ajustes para impresión (Para el Media Kit integrado) */
@media print {
.no-print {
display: none !important;
}
.print-break {
page-break-before: always;
}
body {
background: white !important;
}
}

/* Estilo para imágenes con zoom suave */
.img-hover-zoom {
transition: transform 0.5s ease;
}

/* Clases de utilidad para WordPress (Widgets, Menús, etc.) */
.menu-item a {
transition: color 0.3s ease;
}

/* Estilo para el Footer */
footer {
position: relative;
z-index: 10;
}

/* Si usas el editor de bloques (Gutenberg), esto ayuda a alinear los bloques */
.alignfull {
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
width: 100vw;
max-width: 100vw;
}