/* CSS pour garder le footer en bas */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    flex: 1; /* Le contenu principal prend tout l'espace disponible */
}

.disabled a {
    opacity: 0.5;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    animation: fadeInUp 0.1s ease-out;
}

/* Animations globales */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .cta-btn {
        font-size: 1.3rem;
        padding: 10px 25px;
    }
}
