/* ========================================
   RESET CSS - Calendrier Abrak
   ======================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--abrak-light);
    background-color: var(--abrak-dark-brown);
    background-image:
            linear-gradient(
                    to bottom,
                    rgba(45, 31, 19, 0.95),
                    rgba(69, 51, 37, 0.95)
            ),
            url('../assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === ÉLÉMENTS DE FORMULAIRE === */
input,
textarea,
select,
button {
    font-family: var(--font-family);
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* === SCROLLBAR PERSONNALISÉE === */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--abrak-dark-brown);
}

::-webkit-scrollbar-thumb {
    background: var(--abrak-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--abrak-light-gold);
}