/* Styles globaux — chargés sur toutes les pages via base.html.twig */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Lora', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

.btn-custom {
    font-family: 'Lora', serif;
    background-color: #222222 !important;
    border: none;
    color: #faf3dd !important;
    font-weight: bold !important;
    padding: 12px 24px;
}

.btn-custom:hover {
    background-color: #faf3dd !important;
    color: #222222 !important;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

/* Transition de page sur l'accueil */
.fade-out {
    background-color: black;
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in {
    background-color: black;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        background-color: black;
        opacity: 1;
    }
}
