/* public/css/style.css */

/* Importar fuentes (Oswald para títulos ruidosos, Inter para lectura limpia) */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Variables base del tema Absur2 */
:root {
    --dark: #0a0a0a;
    --dark-card: rgba(20, 20, 20, 0.6);
    --dark-card-hover: rgba(30, 30, 30, 0.8);
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #c0c0c0;
    --gold: #d4a843;
    --border-glass: rgba(255, 255, 255, 0.08);
}

/* Base */
body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    background-image: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    color: var(--white);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, .font-oswald {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   COMPONENTES DEL DASHBOARD
========================================= */
.card-dashboard {
    background: var(--dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    backdrop-filter: blur(10px);
}

.card-dashboard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
    background: var(--dark-card-hover);
    color: inherit;
}

.card-dashboard:hover .icon-box {
    color: var(--gold) !important;
    transform: scale(1.1);
}

.card-dashboard .icon-box {
    font-size: 3rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

/* =========================================
   FORMULARIOS Y BOTONES (Global)
========================================= */
.form-control, .input-group-text, .form-select {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: var(--white);
}

.form-control:focus, .form-select:focus {
    background-color: #222;
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(212, 168, 67, 0.25);
}

.input-group-text {
    color: var(--gray);
}

::placeholder {
    color: #666 !important;
}

.btn-primary-custom {
    background: var(--white);
    color: var(--dark) !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
    background: #e0e0e0;
}