
* {
    font-family: 'JetBrains Mono';
}
.fade-in-scroll {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}
 /* Animation pour le popup */
 .popup-overlay {
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Style pour les images dans le popup */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }

    .popup-content {
        margin: 1rem;
        max-height: 95vh;
    }
}

/* Bouton fermer style Apple */
.close-btn {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.logo{
    width: 120px;
    height: 120px;
    margin: 20px auto;
 }
.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.shield-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}
