/* assets/css/style.css */
:root {
    --bni-red: #cf2030;
    --bni-gold: #c5a059;
    --bni-dark: #2c2e33;
    --body-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--body-bg);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Outfit', sans-serif;
}

.bg-bni-red { background-color: var(--bni-red) !important; }
.text-bni-red { color: var(--bni-red) !important; }
.bg-bni-gold { background-color: var(--bni-gold) !important; }
.text-bni-gold { color: var(--bni-gold) !important; }
.text-bni-dark { color: var(--bni-dark) !important; }

/* Botones personalizados */
.btn-primary {
    background-color: var(--bni-red);
    border-color: var(--bni-red);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #a61a26;
    border-color: #a61a26;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(207, 32, 48, 0.3);
}

/* Efecto Glassmorphism / Elevacion para tarjetas del directorio */
.member-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    height: 100%;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.member-card .card-img-top-wrapper {
    height: 180px;
    padding: 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--body-bg);
}

.member-card .card-img-top-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.member-card .card-body {
    padding: 25px;
}

/* Badge del Giro (Industry) */
.industry-badge {
    background-color: var(--body-bg);
    color: var(--bni-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border-left: 3px solid var(--bni-gold);
}

/* --- Perfil Individual --- */
.profile-header {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border-top: 5px solid var(--bni-red);
}

.profile-logo {
    max-width: 250px;
    max-height: 150px;
    object-fit: contain;
}

.dynamic-fields-table th {
    color: var(--bni-dark);
    font-weight: 600;
    width: 35%;
    background-color: var(--body-bg);
}

/* Formulario de contacto lateral */
.contact-card {
    background: #fff;
    border-radius: 12px;
    border-top: 5px solid var(--bni-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.contact-card .form-control:focus {
    border-color: var(--bni-gold);
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}

/* Utilidades generales */
.cursor-pointer { cursor: pointer; }
