@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    margin-bottom: 0;
}

.gradient-bg {
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
}

.category-plane {
    background-color: #4299e1;
}

.category-fighter {
    background-color: #f56565;
}

.category-tourism {
    background-color: #48bb78;
}

.category-helicopter {
    background-color: #9f7aea;
}

.category-scenery {
    background-color: #ed8936;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition-all {
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Ajouts pour le site PHP */
.error {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.success {
    color: #48bb78;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}