/* 
 * Hoodyia Profile Colors
 * =====================
 * Farbvarianten für Profilkacheln zur Personalisierung
 */

/* Profilkachel Farbvarianten basierend auf user selection - NEUE DUNKLE PALETTE */
.hoodyia-member-card.profile-color-1 {
    background-color: #672B2B !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-2 {
    background-color: #B24B48 !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-3 {
    background-color: #22703C !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-4 {
    background-color: #223F9A !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-5 {
    background-color: #7030A0 !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-6 {
    background-color: #005D7E !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-7 {
    background-color: #572423 !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-8 {
    background-color: #144424 !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-9 {
    background-color: #11204F !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-10 {
    background-color: #481F67 !important;
    color: white !important;
}

.hoodyia-member-card.profile-color-11 {
    background-color: #003142 !important;
    color: white !important;
}

/* Fallback für Kacheln ohne explizite Farbklasse - verwende #672B2B als Standard */
.hoodyia-member-card:not([class*="profile-color-"]) {
    background-color: #672B2B !important;
    color: white !important;
}

/* Profilname mit Schatten - für Standard-Kacheln */
.hoodyia-member-card:not([class*="profile-color-"]) h4,
.hoodyia-member-card:not([class*="profile-color-"]) .hoodyia-member-name {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-weight: 700 !important;
}

/* Profilname für farbige Kacheln - weiße Schrift */
.hoodyia-member-card[class*="profile-color-"] h4,
.hoodyia-member-card[class*="profile-color-"] .hoodyia-member-name {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-weight: 700 !important;
}

/* Stadt, Stadtteil und Beschreibungstext - für Standard-Kacheln */
.hoodyia-member-card:not([class*="profile-color-"]) .hoodyia-member-city,
.hoodyia-member-card:not([class*="profile-color-"]) .hoodyia-member-location,
.hoodyia-member-card:not([class*="profile-color-"]) .hoodyia-member-description {
    color: white !important;
}

/* Stadt, Stadtteil und Beschreibungstext - für farbige Kacheln */
.hoodyia-member-card[class*="profile-color-"] .hoodyia-member-city,
.hoodyia-member-card[class*="profile-color-"] .hoodyia-member-location,
.hoodyia-member-card[class*="profile-color-"] .hoodyia-member-description {
    color: white !important;
}

/* Farbauswahl im Profil - Vorschau-Kreise */
.profile-color-preview {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #ccc;
    cursor: pointer;
    vertical-align: middle;
}

.profile-color-preview.selected {
    border: 3px solid #672B2B;
    box-shadow: 0 0 5px rgba(103, 43, 43, 0.5);
}

.profile-color-preview:hover {
    border: 3px solid #999;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

/* Farbauswahl Container */
.profile-color-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
    align-items: center;
}

.profile-color-selection label {
    font-weight: 600;
    margin-right: 15px;
    color: #333;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .profile-color-selection {
        justify-content: center;
    }
    
    .profile-color-preview {
        width: 25px;
        height: 25px;
        margin-right: 8px;
    }
} 