/* ========================================
   LOGO CSS - Héroïne
   ======================================== */

.logo-svg {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* SVG Styles */
.logo-svg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Circle principal (symbolise la force, l'unité) */
.logo-circle {
    fill: none;
    stroke: url(#gradientCircle);
    stroke-width: 2.5;
    opacity: 0.9;
}

/* Cœur/goutte (symbolise la santé menstruelle et l'empathie) */
.logo-drop {
    fill: url(#gradientDrop);
    opacity: 0.95;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.3));
}

/* Fleur (symbolise l'épanouissement et la féminité) */
.logo-petal {
    fill: url(#gradientPetal);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-svg svg:hover .logo-petal {
    opacity: 1;
    filter: drop-shadow(0 2px 6px rgba(199, 125, 255, 0.4));
}

/* Points/étoiles (symbolise l'espoir et la transformation) */
.logo-dot {
    fill: #FFD93D;
    opacity: 0.7;
    animation: twinkle 2s ease-in-out infinite;
}

.logo-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.logo-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.logo-dot:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* Version alternative minimaliste */
.logo-minimal {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-minimal::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B6B, #C77DFF);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 2s ease-in-out infinite;
}

.logo-minimal::after {
    content: '♀';
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #FF6B6B, #C77DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* Version avec style géométrique */
.logo-geometric {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-geometric-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B6B, #C77DFF);
}

.logo-geometric-outer {
    width: 50px;
    height: 50px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.logo-geometric-middle {
    width: 35px;
    height: 35px;
    opacity: 0.6;
    animation: rotate 15s linear infinite reverse;
}

.logo-geometric-inner {
    width: 20px;
    height: 20px;
    opacity: 1;
    background: linear-gradient(135deg, #FF6B6B, #C77DFF);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-svg,
    .logo-minimal,
    .logo-geometric {
        width: 40px;
        height: 40px;
    }
    
    .logo-geometric-outer {
        width: 40px;
        height: 40px;
    }
    
    .logo-geometric-middle {
        width: 28px;
        height: 28px;
    }
    
    .logo-geometric-inner {
        width: 16px;
        height: 16px;
    }
}
