/**
 * Hoodyia Profile Modal CSS - NEU AUFGEBAUT
 * Spezifische Stile für das Benutzerprofil-Modal
 * Mobile-First Design (95% der User nutzen Mobiltelefone)
 */

/* ============================================
   MODAL GRUNDSTRUKTUR - HÖCHSTE SPEZIFITÄT
   ============================================ */

#hoodyia-profile-details-modal.hoodyia-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    z-index: 9999 !important;
    justify-content: center !important;
    align-items: center !important;
    overflow-y: auto !important;
    padding: 20px !important;
}

#hoodyia-profile-details-modal .hoodyia-modal {
    background-color: #F0E1D0 !important;
    border-radius: 10px !important;
    width: 90% !important;
    max-width: 600px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    margin: auto !important;
}

/* HEADER MIT SCHWARZEM HINTERGRUND STATT GRADIENT */
#hoodyia-profile-details-modal .hoodyia-modal-header {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
    color: white !important;
    padding: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

#hoodyia-profile-details-modal .hoodyia-modal-header h2 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: white !important;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
}

#hoodyia-profile-details-modal .hoodyia-modal-close {
    font-size: 1.5rem !important;
    color: white !important;
    cursor: pointer !important;
    padding: 0 8px !important;
}

#hoodyia-profile-details-modal .hoodyia-modal-content {
    padding: 20px !important;
}

/* ============================================
   PROFIL-BASISINFORMATIONEN - SCHWARZER VERLAUF
   ============================================ */

#hoodyia-profile-details-modal .hoodyia-profile-modal-basic-info {
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #000000 !important;
}

#hoodyia-profile-details-modal .hoodyia-profile-modal-basic-info p {
    margin: 5px 0 !important;
    color: #000000 !important;
}

/* Stadt hervorheben */
#hoodyia-profile-details-modal #hoodyia-profile-modal-location {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin: 10px 0 !important;
    color: #000000 !important;
}

/* Geburtsjahr SCHWARZ */
#hoodyia-profile-details-modal #hoodyia-profile-modal-birth-year {
    font-size: 0.9rem !important;
    color: #000000 !important;
    margin: 5px 0 !important;
}

/* ============================================
   ANTWORT-SEKTIONEN - DUNKLE GRAUE LINIEN ZWISCHEN
   ============================================ */

/* Über mich, Varianten, Spielstärke - MIT dunkler grauer Linie wie Überschriften */
#hoodyia-profile-details-modal .hoodyia-profile-modal-description,
#hoodyia-profile-details-modal .hoodyia-profile-modal-variants,
#hoodyia-profile-details-modal .hoodyia-profile-modal-skill {
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #55707D !important;
}

/* Wegstrecke - OHNE Linie am Ende */
#hoodyia-profile-details-modal .hoodyia-profile-modal-distance {
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: none !important;
}

/* ============================================
   ÜBERSCHRIFTEN IN DEN SEKTIONEN
   ============================================ */

#hoodyia-profile-details-modal .hoodyia-profile-modal-description h3,
#hoodyia-profile-details-modal .hoodyia-profile-modal-variants h3,
#hoodyia-profile-details-modal .hoodyia-profile-modal-skill h3,
#hoodyia-profile-details-modal .hoodyia-profile-modal-distance h3 {
    margin-bottom: 10px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #55707D !important;
}

/* ============================================
   ANTWORT-INHALTE
   ============================================ */

#hoodyia-profile-details-modal .hoodyia-profile-modal-description div,
#hoodyia-profile-details-modal .hoodyia-profile-modal-variants div,
#hoodyia-profile-details-modal .hoodyia-profile-modal-skill div,
#hoodyia-profile-details-modal .hoodyia-profile-modal-distance div {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    color: #000000 !important;
}

/* ============================================
   MOBILE OPTIMIERUNG (95% der User)
   ============================================ */

@media (max-width: 768px) {
    #hoodyia-profile-details-modal .hoodyia-modal {
        width: 95% !important;
        margin: 10px auto !important;
    }
    
    #hoodyia-profile-details-modal .hoodyia-modal-content {
        padding: 15px !important;
    }
    
    #hoodyia-profile-details-modal .hoodyia-modal-header h2 {
        font-size: 1.25rem !important;
    }
    
    #hoodyia-profile-details-modal .hoodyia-profile-modal-description div,
    #hoodyia-profile-details-modal .hoodyia-profile-modal-variants div,
    #hoodyia-profile-details-modal .hoodyia-profile-modal-skill div,
    #hoodyia-profile-details-modal .hoodyia-profile-modal-distance div {
        font-size: 1rem !important;
    }
} 