/**
 * Kenoleggio.com - Schema Colori Custom
 * Sostituisce viola con rosso/verde/blu secondo brand kenoleggio.it
 */

/* ==================== COLORI PRIMARI ==================== */

/* Rosso principale (sostituisce viola) */
.bg-purple-600,
.bg-purple-700 {
    background-color: #E31E24 !important;
}

.text-purple-600,
.text-purple-700 {
    color: #E31E24 !important;
}

.border-purple-600,
.border-purple-700 {
    border-color: #E31E24 !important;
}

/* Hover rosso scuro */
.hover\:bg-purple-700:hover,
.hover\:bg-purple-600:hover {
    background-color: #C41A1F !important;
}

.hover\:text-purple-700:hover,
.hover\:text-purple-600:hover {
    color: #C41A1F !important;
}

/* ==================== PULSANTI CTA (VERDE) ==================== */

/* Pulsanti principali azione → Verde */
button.bg-purple-600,
a.bg-purple-600[href*="cerca"],
a.bg-purple-600[href*="abbonati"],
.btn-primary {
    background-color: #10B981 !important;
}

button.bg-purple-600:hover,
a.bg-purple-600[href*="cerca"]:hover,
a.bg-purple-600[href*="abbonati"]:hover,
.btn-primary:hover {
    background-color: #059669 !important;
}

/* ==================== LINK E TESTI (BLU) ==================== */

/* Link interattivi → Blu */
a.text-purple-600:not(.bg-purple-600),
.link-primary {
    color: #1E40AF !important;
}

a.text-purple-600:not(.bg-purple-600):hover,
.link-primary:hover {
    color: #1E3A8A !important;
}

/* ==================== GRADIENTI ==================== */

.from-purple-600 {
    --tw-gradient-from: #E31E24 !important;
}

.to-purple-600 {
    --tw-gradient-to: #E31E24 !important;
}

.bg-gradient-to-r.from-purple-600 {
    background-image: linear-gradient(135deg, #c7181e 0%, #971317 100%) !important;
}

/* ==================== BADGE E TAG ==================== */

.bg-purple-100 {
    background-color: #FEE2E2 !important; /* Rosso chiaro */
}

.text-purple-700 {
    color: #E31E24 !important;
}

/* ==================== FOCUS E RING ==================== */

.focus\:ring-purple-500:focus,
.focus\:ring-2:focus {
    --tw-ring-color: #E31E24 !important;
}

.ring-purple-500 {
    --tw-ring-color: #E31E24 !important;
}

/* ==================== ADMIN PANEL ==================== */

/* Sidebar admin attivo */
.bg-purple-100.text-purple-700 {
    background-color: #FEE2E2 !important;
    color: #E31E24 !important;
}

/* ==================== CATEGORIE NEWS ==================== */

/* Categoria attiva */
.bg-purple-600.text-white {
    background-color: #E31E24 !important;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    /* Mantieni stessi colori su mobile */
}

/* ==================== UTILITIES ==================== */

.text-red-primary {
    color: #E31E24;
}

.bg-red-primary {
    background-color: #E31E24;
}

.text-green-cta {
    color: #10B981;
}

.bg-green-cta {
    background-color: #10B981;
}

.text-blue-link {
    color: #1E40AF;
}

.bg-blue-link {
    background-color: #1E40AF;
}