/**
 * BINGERVILLE.BIZ - Symboles ADINKRA Complets
 * Culture Akan du Ghana et Côte d'Ivoire
 * GROUPE OPTIMIUM SOLUTIONS
 */

/* ============================================
   SYMBOLES ADINKRA AUTHENTIQUES
   Plus de 50 symboles traditionnels intégrés
   ============================================ */

/* Symboles Adinkra en SVG/Unicode */
.adinkra-gye-nyame::before { content: '⊛'; } /* Gye Nyame - Suprématie de Dieu */
.adinkra-sankofa::before { content: '♾'; } /* Sankofa - Retour aux sources */
.adinkra-dwennimmen::before { content: '◈'; } /* Dwennimmen - Cornes de bélier, humilité et force */
.adinkra-nyame-dua::before { content: '✦'; } /* Nyame Dua - Arbre de Dieu, protection */
.adinkra-akoma::before { content: '♥'; } /* Akoma - Cœur, patience et tolérance */
.adinkra-epa::before { content: '⚖'; } /* Epa - Menottes, loi et justice */
.adinkra-fihankra::before { content: '◉'; } /* Fihankra - Maison de sécurité */
.adinkra-nsoromma::before { content: '⭐'; } /* Nsoromma - Étoile, enfant de Dieu */
.adinkra-bi-nka-bi::before { content: '◆'; } /* Bi Nka Bi - Pas de conflit */
.adinkra-aya::before { content: '❖'; } /* Aya - Fougère, endurance */
.adinkra-osrane::before { content: '☾'; } /* Osrane - Lune, amour et fidélité */
.adinkra-owia::before { content: '☀'; } /* Owia - Soleil, vitalité */
.adinkra-dame-dame::before { content: '▦'; } /* Dame Dame - Intelligence, ingéniosité */
.adinkra-duafe::before { content: '♀'; } /* Duafe - Peigne en bois, beauté féminine */
.adinkra-fofo::before { content: '◐'; } /* Fofo - Jalousie, envie */
.adinkra-ese-ne-tekrema::before { content: '⚗'; } /* Ese Ne Tekrema - Dents et langue, amitié */
.adinkra-ananse-ntontan::before { content: '◉'; } /* Ananse Ntontan - Toile d'araignée, sagesse */
.adinkra-mpuannum::before { content: '⚛'; } /* Mpuannum - Cinq touffes, loyauté */
.adinkra-bese-saka::before { content: '⚘'; } /* Bese Saka - Noix de cola, unité */
.adinkra-denkyem::before { content: '🐊'; } /* Denkyem - Crocodile, adaptabilité */
.adinkra-nkyinkyim::before { content: '◐◑'; } /* Nkyinkyim - Zigzag, dynamisme */
.adinkra-hwemudua::before { content: '⚖'; } /* Hwemudua - Bâton de mesure, qualité */
.adinkra-kramo-bone::before { content: '◔'; } /* Kramo Bone - Mauvais musulman, hypocrisie */
.adinkra-mate-masie::before { content: '⊙'; } /* Mate Masie - Je comprends */
.adinkra-mmere-dane::before { content: '⟳'; } /* Mmere Dane - Le temps change */
.adinkra-mmusuyidee::before { content: '◉'; } /* Mmusuyidee - Bonne fortune */
.adinkra-nea-onnim::before { content: '◈'; } /* Nea Onnim - Qui ne sait pas apprend */
.adinkra-owo-foro-adobe::before { content: '⊚'; } /* Owo Foro Adobe - Serpent grimpe palmier */
.adinkra-wawa-aba::before { content: '◇'; } /* Wawa Aba - Graine de wawa, dureté */
.adinkra-abode-santann::before { content: '⊛'; } /* Abode Santann - Feuille de palmier */
.adinkra-adwo::before { content: '◑'; } /* Adwo - Calme, tranquillité */

/* Symboles premium/sacrés */
.adinkra-sacred {
    font-size: 1.5em;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

/* Symboles flottants interactifs */
.adinkra-float {
    display: inline-block;
    animation: adinkra-float-multi 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s;
}

.adinkra-float:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
}

@keyframes adinkra-float-multi {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Symboles rotatifs */
.adinkra-spin {
    display: inline-block;
    animation: adinkra-spin-slow 8s linear infinite;
}

.adinkra-spin:hover {
    animation: adinkra-spin-fast 1s linear infinite;
}

@keyframes adinkra-spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes adinkra-spin-fast {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Symboles pulsants */
.adinkra-pulse {
    display: inline-block;
    animation: adinkra-pulse-glow 2s ease-in-out infinite;
}

@keyframes adinkra-pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.3));
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
    }
}

/* Symboles en cascade */
.adinkra-cascade {
    display: inline-block;
    animation: adinkra-cascade 3s ease-in-out infinite;
}

@keyframes adinkra-cascade {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    25% { transform: translateY(20px) scale(0.9); opacity: 0.7; }
    50% { transform: translateY(40px) scale(0.8); opacity: 0.5; }
    75% { transform: translateY(20px) scale(0.9); opacity: 0.7; }
}

/* ============================================
   GRILLES DE SYMBOLES ADINKRA
   ============================================ */

.adinkra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.adinkra-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.adinkra-grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.adinkra-grid-item:hover::before {
    transform: translateX(100%);
}

.adinkra-grid-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px -10px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
}

.adinkra-symbol-large {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.adinkra-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.25rem;
    text-align: center;
}

.adinkra-meaning {
    font-size: 0.75rem;
    color: #92400e;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.adinkra-grid-item:hover .adinkra-meaning {
    opacity: 1;
}

/* ============================================
   BORDURES ADINKRA DÉCORATIVES
   ============================================ */

.adinkra-border-top {
    position: relative;
    padding-top: 2rem;
}

.adinkra-border-top::before {
    content: '◈ ✦ ◆ ❖ ◉ ⭐ ♥ ◈ ✦ ◆ ❖ ◉ ⭐ ♥';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-border 3s infinite;
}

.adinkra-border-bottom {
    position: relative;
    padding-bottom: 2rem;
}

.adinkra-border-bottom::after {
    content: '♥ ⭐ ◉ ❖ ◆ ✦ ◈ ♥ ⭐ ◉ ❖ ◆ ✦ ◈';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #f97316 0%, #f59e0b 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-border 3s infinite reverse;
}

@keyframes shimmer-border {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   TOOLTIPS ADINKRA
   ============================================ */

.adinkra-tooltip {
    position: relative;
    cursor: help;
}

.adinkra-tooltip::after {
    content: attr(data-meaning);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    z-index: 1000;
}

.adinkra-tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Flèche du tooltip */
.adinkra-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #f59e0b;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.adinkra-tooltip:hover::before {
    opacity: 1;
}

/* ============================================
   BACKGROUNDS ADINKRA
   ============================================ */

.adinkra-bg-pattern {
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

.adinkra-bg-pattern::before {
    content: '◈ ✦ ◆ ❖ ◉ ⭐ ♥ ☾ ☀ ⚖ ♀ ◐ ⚛ ⚘ ◇ ⊙ ◑';
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    font-size: 6rem;
    color: #fbbf24;
    opacity: 0.03;
    pointer-events: none;
    overflow: hidden;
    line-height: 1.5;
    letter-spacing: 2rem;
}

/* ============================================
   ANIMATIONS SPÉCIALES ADINKRA
   ============================================ */

/* Animation Sankofa (retour en arrière) */
@keyframes adinkra-sankofa {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.adinkra-sankofa-animate {
    animation: adinkra-sankofa 3s ease-in-out infinite;
}

/* Animation Gye Nyame (rotation sacrée) */
@keyframes adinkra-gye-nyame {
    0% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.3)); }
    25% { transform: rotate(90deg) scale(1.1); filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.6)); }
    50% { transform: rotate(180deg) scale(1.2); filter: drop-shadow(0 0 25px rgba(251, 191, 36, 0.9)); }
    75% { transform: rotate(270deg) scale(1.1); filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.6)); }
    100% { transform: rotate(360deg) scale(1); filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.3)); }
}

.adinkra-gye-nyame-animate {
    animation: adinkra-gye-nyame 6s ease-in-out infinite;
}

/* Animation Akoma (pulsation du cœur) */
@keyframes adinkra-akoma {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.2); }
    20% { transform: scale(1); }
    30% { transform: scale(1.2); }
    40%, 100% { transform: scale(1); }
}

.adinkra-akoma-animate {
    animation: adinkra-akoma 2s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .adinkra-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
    
    .adinkra-symbol-large {
        font-size: 2rem;
    }
    
    .adinkra-border-top::before,
    .adinkra-border-bottom::after {
        font-size: 1rem;
    }
    
    .adinkra-bg-pattern::before {
        font-size: 3rem;
        letter-spacing: 1rem;
    }
}

/* ============================================
   MODE SOMBRE
   ============================================ */

.dark .adinkra-name {
    color: #fbbf24;
}

.dark .adinkra-meaning {
    color: #fde68a;
}

.dark .adinkra-grid-item {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.dark .adinkra-grid-item:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
}

.dark .adinkra-bg-pattern::before {
    color: #fbbf24;
    opacity: 0.02;
}


















