/* public/css/style.css */
/* RYZOMA: Brand Guidelines Implementation v1.3 (FINAL FUSION) */
/* Estrategia: Header "Clean Canvas" (Texto) + Sidebar Agro + Cards Restauradas */

/* 1. Importación de Tipografías */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;600;700;800&display=swap');

/* 2. Sistema de Color (Variables Semánticas) */
:root {
    /* --- Paleta Base (Ryzoma Umbrella) --- */
    --ryzoma-charcoal: #313131;  /* Gris Carbón (Texto principal) */
    --ryzoma-beige:    #F9F9F7;  /* Beige Suave (Fondo Body) */
    --ryzoma-yellow:   #FFC759;  /* Caléndula (Acento, Botones, Y) */
    --ryzoma-white:    #FFFFFF;  /* Blanco Puro */
    --ryzoma-grey-mid: #E0E0E0;  /* Bordes */
    --ryzoma-grey-light:#F5F5F5; /* Fondos secundarios */

    /* --- Paleta Verticales (Módulos) --- */
    --vertical-agro:   #0f8164;  /* Verde Bosque (Sidebar Agro) */
    --vertical-water:  #7EC4CF;  /* Azul Cielo (Riego/Agua) */
    --vertical-alert:  #F4511E;  /* Naranja Alerta */
    --vertical-pale:   #e8f5e9;  /* Verde Muy Pálido (Banner) */

    /* --- Mapeo UI --- */
    --color-bg-body:       var(--ryzoma-beige);
    --color-text-main:     var(--ryzoma-charcoal);
    --color-navbar-bg:     var(--ryzoma-white);    /* Header CLARO (Clean Canvas) */
    --color-sidebar-bg:    var(--vertical-agro);   /* Sidebar VERDE */
    --color-primary-cta:   var(--ryzoma-yellow);
}

/* 3. Estilos Globales */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ryzoma-charcoal);
}

a { text-decoration: none; transition: all 0.2s ease; }

/* ------------------------------------------------------- */
/* 4. Header de Navegación ("Clean Canvas" - TEXTO)        */
/* ------------------------------------------------------- */
.navbar {
    background-color: var(--color-navbar-bg) !important;
    border-bottom: 1px solid var(--ryzoma-grey-mid);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03); /* Sombra ultra suave */
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

/* Logo Textual (Estilo Ryzoma) */
.navbar-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800; /* Extra Bold */
    font-size: 1.6rem;
    color: var(--ryzoma-charcoal) !important;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

/* La "Y" estilizada en el texto */
.navbar-brand .brand-y {
    color: var(--ryzoma-yellow); /* Conecta visualmente con el Sidebar */
    font-style: normal; /* Evitar itálica automática */
}

/* Elementos del Navbar (Usuario, Menú) */
.navbar .nav-link {
    color: var(--ryzoma-charcoal) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar .nav-link:hover {
    color: var(--vertical-agro) !important;
}

/* Fix Botón Hamburguesa (Visible y Corporativo) */
.navbar-toggler {
    /* Usamos el verde agro para el borde, para que se defina bien */
    border-color: var(--vertical-agro) !important;
    border-width: 1px;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none !important; /* Elimina el resplandor azul estándar */
    background-color: rgba(15, 129, 100, 0.05); /* Sutil fondo verde al tocar */
}

.navbar-toggler-icon {
    /* SVG Re-coloreado: El código '%230f8164' corresponde a tu Verde Agro (#0f8164) */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230f8164' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/* 5. Sidebar (Contexto Agro - VERDE) */
#sidebar {
    background-color: var(--color-sidebar-bg) !important;
    box-shadow: 4px 0 20px rgba(0,0,0,0.05);
}

#sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
}

#sidebar .nav-link i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.1rem;
}

#sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(4px);
}

#sidebar .nav-link.active {
    background-color: var(--ryzoma-yellow);
    color: var(--ryzoma-charcoal);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#sidebar .nav-link.active i {
    color: var(--ryzoma-charcoal);
}

/* 6. Componentes UI (Botones, Banners, Login) */

/* Banner de Bienvenida */
.welcome-banner {
    background: linear-gradient(135deg, #ffffff 0%, var(--vertical-pale) 100%);
    border: 1px solid rgba(15, 129, 100, 0.1);
    color: var(--vertical-agro);
    border-radius: 1rem;
}
.welcome-banner .stat-icon {
    color: var(--vertical-agro);
    opacity: 0.15;
}

/* Botones */
.btn-accent-calendula {
    background-color: var(--color-primary-cta);
    border-color: var(--color-primary-cta);
    color: var(--ryzoma-charcoal);
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 0.5rem 1.2rem;
}
.btn-accent-calendula:hover {
    background-color: #e6b24e;
    border-color: #e6b24e;
    color: var(--ryzoma-charcoal);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline-secondary {
    color: var(--ryzoma-charcoal);
    border-color: var(--ryzoma-grey-mid);
}
.btn-outline-secondary:hover {
    background-color: var(--ryzoma-grey-light);
    border-color: var(--ryzoma-charcoal);
    color: var(--ryzoma-charcoal);
}

/* Tarjetas Genéricas (Contenedores) */
.card {
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border-radius: 0.75rem;
    background-color: var(--ryzoma-white);
}
.card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--ryzoma-grey-mid);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

/* Breadcrumbs */
.breadcrumb-item a {
    color: var(--vertical-agro);
    font-weight: 600;
}
.breadcrumb-item.active {
    color: #999;
    font-weight: 400;
}

/* --- AJUSTES ESPECÍFICOS LOGIN --- */

/* Logo Ryzoma Gigante en Login */
.login-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800; /* Extra Bold */
    font-size: 3.5rem; /* Tamaño impactante */
    color: var(--ryzoma-white); /* Blanco puro sobre fondo oscuro */
    letter-spacing: -0.04em;
    line-height: 1;
}

/* La Y en Amarillo (Hereda la variable global, funciona perfecto sobre oscuro) */
.login-brand .brand-y {
    color: var(--ryzoma-yellow);
}

/* Ajuste para espaciado de letras (tracking) en subtítulos */
.ls-2 { letter-spacing: 2px; }

/* Ajuste fino inputs login */
.login-card-glass .form-control {
    background-color: rgba(0, 0, 0, 0.2); /* Un poco más oscuro para legibilidad */
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}
.login-card-glass .form-control:focus {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: var(--ryzoma-yellow);
    box-shadow: 0 0 0 4px rgba(255, 199, 89, 0.15); /* Glow amarillo suave */
}
.login-card-glass label {
    color: rgba(255, 255, 255, 0.6);
}
/* Placeholder color fix para navegadores */
.login-card-glass .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
/* --- AJUSTES LOGIN (ISOTIPO CIRCULAR) --- */

/* El contenedor circular blanco */
.logo-circle {
    width: 100px;  /* Tamaño similar al de tu imagen */
    height: 100px;
    background-color: var(--ryzoma-white); /* Fondo blanco puro */
    border-radius: 50%; /* Círculo perfecto */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* Sombra para que flote */
    position: relative;
}

/* La "Y" dentro del círculo */
.brand-y-iso {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 5rem; /* Letra grande */
    color: var(--ryzoma-yellow); /* Amarillo Ryzoma */
    line-height: 2;
    padding-bottom: 1.5rem; /* Ajuste fino vertical */
}

/* El texto "ryzoma" debajo del círculo */
.site-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--ryzoma-charcoal); /* Blanco sobre el fondo oscuro */
    letter-spacing: -0.03em;
}

/* ------------------------------------------------------- */
/* 7. Clases de Utilidad (RESTAURADAS PARA TARJETAS)       */
/* ------------------------------------------------------- */

/* Agro (Verde) */
.text-primary-dark-green { color: var(--vertical-agro) !important; }
.bg-primary-dark-green   { background-color: var(--vertical-agro) !important; }

/* Agua/Riego (Azul) */
.bg-accent-sky-blue { background-color: var(--vertical-water) !important; color: #fff; }
.text-accent-sky-blue { color: var(--vertical-water) !important; }

/* Caléndula (Amarillo) */
.bg-accent-calendula { background-color: var(--ryzoma-yellow) !important; color: var(--ryzoma-charcoal) !important; }

/* ------------------------------------------------------- */
/* 8. Tarjetas de Dashboard y Animaciones (CRUCIALES)      */
/* ------------------------------------------------------- */

/* Stat Cards (KPIs) - Estilo Solarpunk */
.stat-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Importante: Estas tarjetas dependen de las clases de utilidad (bg-...) para el color */
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.stat-card .stat-icon {
    font-size: 4.5rem;
    opacity: 0.2;
    position: absolute;
    right: -25px;
    bottom: -25px;
    transform: rotate(-15deg);
}

.stat-card .stat-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

.stat-card .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Action Cards (Botones/Links gigantes) */
.action-card {
    transition: all 0.3s ease;
    border: 1px solid var(--ryzoma-grey-mid);
    background-color: var(--ryzoma-white); 
    height: 100%; /* Asegura altura consistente en grillas */
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--vertical-water); /* Glow azul al hover */
    box-shadow: 0 10px 25px rgba(126, 196, 207, 0.2);
}

.action-card .action-icon {
    font-size: 3rem;
    color: var(--vertical-agro); /* Icono verde por defecto */
    transition: transform 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

/* Animaciones Fade-in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-section {
    animation: fadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Responsive Sidebar */
@media (max-width: 991.98px) {
    #sidebar {
        position: fixed; top: 65px; bottom: 0; left: 0;
        z-index: 1040; width: 240px !important;
        transform: translateX(-100%);
    }
    #sidebar.active { transform: translateX(0); }
    .sidebar-overlay { 
        position: fixed; top: 0; left: 0; right: 0; bottom: 0; 
        background: rgba(49,49,49,0.6); z-index: 1030; backdrop-filter: blur(3px);
    }
}
@media (min-width: 992px) {
    #sidebar .position-sticky { top: 1.5rem; }
}
/* Ajuste para la Tarjeta de Bienvenida en Móvil */
@media (max-width: 768px) {
    .welcome-banner {
        background: var(--ryzoma-white); /* Fondo plano en móvil para ahorrar recursos */
        border-left: 4px solid var(--vertical-agro); /* Acento lateral en vez de fondo completo */
    }
    .welcome-banner h2 {
        font-size: 1.5rem; /* Texto más pequeño */
    }
}