/* Styles de base */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Lora', serif;
}

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

/* Bouton */
.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;
}

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

/* Apparition en fondue de 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;
    }
}


/*
body {
    color: #23262F;
}

h1 {
    font-weight: bold;
    font-size: clamp(1.875rem, 2.5vw + 1rem, 2.25rem);
    line-height: 1.2;
}

h2 {
    font-weight: 600;
    font-size: clamp(1.5rem, 2vw + 1rem, 1.875rem);
    line-height: 1.2;
}

h3 {
    font-weight: 500;
    font-size: clamp(1.25rem, 1.5vw + 1rem, 1.5rem);
    line-height: 1.3;
}

h4 {
    font-weight: 500;
    font-size: clamp(1.125rem, 1.25vw + 1rem, 1.25rem);
    line-height: 1.4;
}

h5 {
    font-weight: 500;
    font-size: clamp(1rem, 1vw + 1rem, 1.125rem);
    line-height: 1.4;
}

h6 {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

!* Boutons personnalisés *!
.btn {
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    text-align: center;
    height: auto;
    width: auto;
}

.btn-primary {
    background-color: #0d6efd;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

.btn-primary:active {
    background-color: #0a58ca;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

.btn-secondary {
    background-color: #fff;
    color: #0d6efd;
    border: 2px solid #0d6efd;
}

.btn-secondary:hover {
    background-color: #e9f2ff;
}

.btn-secondary:active {
    background-color: #d0e4ff;
}

.btn-secondary:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.btn-outline:hover {
    background-color: #f8f9fa;
}

.btn-outline:active {
    background-color: #e2e6ea;
}

.btn-outline:focus {
    box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}

.btn-success {
    background-color: #198754;
    color: #fff;
    border: none;
}

.btn-success:hover {
    background-color: #157347;
}

.btn-success:active {
    background-color: #146c43;
}

.btn-success:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

.btn-danger {
    background-color: #dc3545;
    color: #fff;
    border: none;
}

.btn-danger:hover {
    background-color: #bb2d3b;
}

.btn-danger:active {
    background-color: #b02a37;
}

.btn-danger:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}

.btn-warning {
    background-color: #ffc107;
    color: #fff;
    border: none;
}

.btn-warning:hover {
    background-color: #e0a800;
}

.btn-warning:active {
    background-color: #d39e00;
}

.btn-warning:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}

!* Titres *!
.heading-1 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #212529;
}

.heading-2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #212529;
}

.heading-3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #212529;
}

!* Alertes *!
.alert-info {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #0c5460;
    background-color: #d1ecf1;
    border-radius: 0.5rem;
}

.alert-success {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #155724;
    background-color: #d4edda;
    border-radius: 0.5rem;
}

.alert-warning {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #856404;
    background-color: #fff3cd;
    border-radius: 0.5rem;
}

.alert-danger {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #721c24;
    background-color: #f8d7da;
    border-radius: 0.5rem;
}

!* Badges *!
.badge-primary {
    background-color: #cfe2ff;
    color: #084298;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
}

.badge-success {
    background-color: #d1e7dd;
    color: #0f5132;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
}

.badge-warning {
    background-color: #fff3cd;
    color: #664d03;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
}

.badge-danger {
    background-color: #f8d7da;
    color: #842029;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
}

!* Tables *!
.table-container {
    position: relative;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #fff;
}

.table {
    width: 100%;
    font-size: 0.875rem;
    text-align: left;
    color: #6c757d;
}

.table thead {
    font-size: 0.75rem;
    text-transform: uppercase;
    background-color: #f8f9fa;
    color: #495057;
}

.table th,
.table td {
    padding: 0.75rem 1rem;
}

.table tbody tr {
    border-bottom: 1px solid #dee2e6;
}

.table tbody th {
    font-weight: 500;
    color: #212529;
    white-space: nowrap;
}

.table-search {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    color: #212529;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    padding: 0.5rem 2.5rem 0.5rem 2.5rem;
    width: 100%;
}

.table-dropdown {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    color: #6c757d;
    border-radius: 0.5rem;
}

.table-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    color: #6c757d;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.table-pagination-rounded-l {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.table-pagination-rounded-r {
    border-top-right-radius: 0.5rem;
}
*/
