/*===========================
// FICHIER 5 : css/hints.css
// Styles pour l'affichage des indices côté joueur
// ===========================
*/

/*
.hints-container {
    margin-top: 20px;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid #1e3a5f;
    border-radius: 8px;
    padding: 15px;
}

.hints-header {
    color: #ffff6b;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1e3a5f;
}

.hints-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hint-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 5px;
    transition: all 0.3s;
}

.hint-item.active {
    background: rgba(45, 80, 22, 0.3);
    border: 1px solid #2d5016;
}

.hint-item.locked {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #0a0a0a;
    opacity: 0.6;
}

.hint-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.hint-content {
    flex: 1;
}

.hint-title {
    font-weight: bold;
    color: #6bff6b;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.hint-item.locked .hint-title {
    color: #7a9cb5;
}

.hint-text {
    color: #c5d8e8;
    line-height: 1.5;
    font-size: 0.85em;
}

.hint-item.locked .hint-text {
    color: #7a9cb5;
    font-style: italic;
}
*/


/* ===========================
   CAPTAIN JON - STYLES INDICES
   =========================== */

/* Conteneur principal des indices */
.hints-container {
    margin-top: 25px;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid #1e3a5f;
    border-radius: 8px;
    padding: 15px;
    animation: fadeIn 0.5s ease-out;
}

/* En-tête des indices */
.hints-header {
    color: #ffff6b;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1e3a5f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Liste des indices */
.hints-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Item d'indice */
.hint-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Indice actif (débloqué) */
.hint-item.active {
    background: rgba(45, 80, 22, 0.4);
    border: 1px solid #2d5016;
    animation: hintUnlock 0.6s ease-out;
}

.hint-item.active:hover {
    background: rgba(45, 80, 22, 0.6);
    transform: translateX(3px);
}

/* Indice verrouillé */
.hint-item.locked {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(10, 10, 10, 0.5);
    opacity: 0.6;
}

/* Icône de l'indice */
.hint-icon {
    font-size: 1.5em;
    flex-shrink: 0;
    line-height: 1;
}

/* Contenu de l'indice */
.hint-content {
    flex: 1;
}

/* Titre de l'indice */
.hint-title {
    font-weight: bold;
    color: #6bff6b;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.hint-item.locked .hint-title {
    color: #7a9cb5;
}

/* Texte de l'indice */
.hint-text {
    color: #c5d8e8;
    line-height: 1.6;
    font-size: 0.85em;
}

.hint-item.locked .hint-text {
    color: #7a9cb5;
    font-style: italic;
}

/* Animation de déverrouillage */
@keyframes hintUnlock {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation d'apparition */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hints-container {
        padding: 10px;
        margin-top: 15px;
    }
    
    .hints-header {
        font-size: 0.9em;
    }
    
    .hint-item {
        padding: 10px;
        gap: 10px;
    }
    
    .hint-icon {
        font-size: 1.2em;
    }
    
    .hint-title {
        font-size: 0.85em;
    }
    
    .hint-text {
        font-size: 0.8em;
    }
}