/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 18 2025 | 15:43:04 */
.panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.panel:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.panel.expanded {
    position: fixed;
    top: 90vh;
    left: 6vw;
    width: 40vw; /*95vw;*/
    height: 65vh; /* 95vh;*/
    z-index: 1000;
    transform: scale(1,2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.panel.expanded:hover {
    transform: scale(1);
}

.panel-content {
    text-align: center;
    color: white;
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.panel-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.panel-subtitle {
    font-size: 1.2em;
    opacity: 0.8;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.panel-description {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    transition: all 0.3s ease;
}

.panel.expanded .panel-title {
    font-size: 4em;
    margin-bottom: 25px;
}

.panel.expanded .panel-subtitle {
    font-size: 1.8em;
    margin-bottom: 30px;
}

.panel.expanded .panel-description {
    font-size: 1.3em;
    line-height: 1.8;
    max-width: 800px;
}

/* Couleurs spécifiques pour chaque panneau */

/* Animation des particules de fond */
.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    opacity: 0.2;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Icônes pour chaque panneau */

/* Indicateur de clic */
.click-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.9em;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.panel.expanded .click-indicator {
    bottom: 30px;
    right: 30px;
    font-size: 1.1em;
    padding: 12px 20px;
}

/* Animation d'entrée */
/*.panel {
   animation: slideIn 0.6s ease-out forwards;
}*/

.panel:nth-child(1) { animation-delay: 0.1s; }
.panel:nth-child(2) { animation-delay: 0.2s; }
.panel:nth-child(3) { animation-delay: 0.3s; }
.panel:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Effet de pulsation sur le panneau actif */
.panel.expanded::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 22px;
    animation: pulse-border 2s infinite;
    z-index: -1;
}

@keyframes pulse-border {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.01);
    }
}