/* Fond lumineux */
body {
    margin: 0;
    background: linear-gradient(to bottom, #fff, #b67c2d);
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

/* Canvas pour particules */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 120%;
    height: 120%;
    z-index: 0;
}

/* Loader */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 215, 0, 0.3);
    border-top: 5px solid gold;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Responsive : réduire le loader et le logo sur petits écrans */
@media (max-width: 768px) {
    .loader { width: 40px; height: 40px; }
    header img { max-width: 140px; }
}

:root {
    --vh: 100%;
}

.fullscreen {
    height: calc(var(--vh, 1vh) * 100);
}