/*
Theme Name: LeÃ³n Ciudad Creativa
Theme URI: https://leonciudadliteraria.com.ni
Author: LeÃ³n Ciudad Creativa
Author URI: https://leonciudadliteraria.com.ni
Description: Tema oficial, ligero y de alto rendimiento para el portal cultural de la AlcaldÃ­a de LeÃ³n.
Version: 1.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leon-creativa
*/

/* Variables Globales */
body, html { margin: 0; padding: 0; box-sizing: border-box; } * { box-sizing: inherit; } :root {
	--lcc-red: #dd3333;
	--lcc-black: #040404;
	--lcc-beige: #f5f0e6;
	--lcc-white: #ffffff;
	--lcc-text: #333333;
	--lcc-font-heading: 'Bebas Neue', 'Oswald', sans-serif;
	--lcc-font-body: 'DM Sans', 'Montserrat', sans-serif;
}

/* Reseteo BÃ¡sico */
body {
	margin: 0;
	padding: 0;
	font-family: var(--lcc-font-body);
	color: var(--lcc-text);
	background-color: var(--lcc-beige);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--lcc-font-heading);
	color: var(--lcc-black);
	text-transform: uppercase;
}

a {
	color: var(--lcc-red);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--lcc-black);
}

/* Header */
.lcc-header {
	background-color: var(--lcc-black);
	color: var(--lcc-white);
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.lcc-logo a {
	color: var(--lcc-white);
	font-family: var(--lcc-font-heading);
	font-size: 2rem;
	letter-spacing: 1px;
}

.lcc-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
}

.lcc-nav a {
	color: var(--lcc-white);
	font-weight: bold;
	font-size: 1.1rem;
	text-transform: uppercase;
}

.lcc-nav a:hover {
	color: var(--lcc-red);
}

/* Main Content */
.lcc-main {
	min-height: 70vh;
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

/* Footer */
.lcc-footer {
	background-color: var(--lcc-black);
	color: var(--lcc-white);
	text-align: center;
	padding: 2rem;
	margin-top: 4rem;
}

/* Botones */
.lcc-btn {
	display: inline-block;
	background-color: var(--lcc-red);
	color: var(--lcc-white);
	padding: 10px 25px;
	border-radius: 5px;
	font-weight: bold;
	text-transform: uppercase;
	transition: background 0.3s;
}

.lcc-btn:hover {
	background-color: #b52a2a;
	color: var(--lcc-white);
}

/* Utilidades */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
/* Header Glassmorphism y Transparente */
.lcc-header {
	background-color: transparent;
	color: var(--lcc-white);
	padding: 1.5rem 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: all 0.4s ease;
}

.lcc-header.scrolled {
	background-color: rgba(17, 17, 17, 0.95);
	padding: 0.8rem 3rem;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.lcc-logo img {
	height: 60px;
	width: auto;
	transition: height 0.4s ease;
}

.lcc-header.scrolled .lcc-logo img {
	height: 45px;
}

.lcc-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.lcc-nav a {
	color: var(--lcc-white);
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
}

/* Efecto de Subrayado Animado */
.lcc-nav a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	background-color: var(--lcc-red);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.lcc-nav a:hover {
	color: var(--lcc-red);
}

.lcc-nav a:hover::after {
	width: 100%;
}

/* Botón de llamado a la acción especial en el menú */
.lcc-nav li:last-child a {
	background: var(--lcc-red);
	color: white;
	padding: 10px 25px;
	border-radius: 30px;
	font-weight: bold;
}
.lcc-nav li:last-child a::after {
	display: none;
}
.lcc-nav li:last-child a:hover {
	background: #b22222;
	transform: translateY(-2px);
}
/* Header Transparente Minimalista */
.lcc-header {
	background-color: transparent !important;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	pointer-events: none;
}

.lcc-logo {
	pointer-events: auto;
}

.lcc-logo img {
	height: 60px;
	width: auto;
}


