/* Styles de base */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Ajustements responsive globaux */
@media (max-width: 768px) {
    body {
        padding-top: 80px !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px !important;
    }
}

/* Amélioration des images */
img {
    max-width: 100%;
    height: auto;
}

/* Focus visible pour accessibilité */
:focus-visible {
    outline: 2px solid #4ABDFB;
    outline-offset: 2px;
}

/* Smooth scrolling pour les ancres */
html:focus-within {
    scroll-behavior: smooth;
}
