/* ============================================= */
/* FICHIER : ./web/assets/css/domain-h.css */
/* Styles spécifiques pour viteuneteuch.isuke.fr */
/* ============================================= */

/* Variables spécifiques au domaine H */
:root {
    --accent-primary: #FF3366;   /* Rose principal */
    --accent-secondary: #FF66AA; /* Rose plus clair */
    --accent-hover: #E62E5A;     /* Rose plus foncé au hover */
    --bg-gradient: linear-gradient(135deg, #2e1a1a 0%, #3e1621 100%);
}

/* Header spécifique */
header {
    background: var(--bg-gradient);
}

/* Boutons spécifiques */
.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 25px rgba(255, 51, 102, 0.4);
}

/* Cartes de profil spécifiques */
.profile-card {
    border-top: 4px solid var(--accent-primary);
}

.profile-card .profile-card-body h5 {
    color: var(--accent-primary);
}

/* Badges spécifiques */
.badge {
    background-color: var(--accent-primary);
}

/* Alertes spécifiques */
.alert-success {
    border-left: 4px solid var(--accent-green);
}

.alert-error {
    border-left: 4px solid var(--accent-red);
}
