@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
h1{
    font-family: "Bebas Neue", sans-serif;
    font-size: 5em;
}
/* Galerie principale */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Cards */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    object-fit: cover;
    height: 300px;
    width: 100%;
}
/* Couleur du fond (backdrop) lors de l'ouverture du modal */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.9); /* Fond noir avec 90% d'opacité */
}

/* Conteneur principal du modal */
.modal-content {
    background-color: #2c2c2c86; /* Gris foncé pour le fond de la photo */
    border-radius: 10px; /* Coins arrondis pour un design moderne */
    border: 2px solid #44444472; /* Bordure gris foncé */
    color: #fff; /* Couleur du texte */
}

/* Texte dans le header du modal */
.modal-header {
    border-bottom: 1px solid #444; /* Séparation avec le corps du modal */
}

/* Bouton de fermeture */
.modal-header .btn-close {
    background-color: #fcbe9b; /* Bouton couleur beige/orangé */
    border-radius: 50%; /* Bouton arrondi */
}

.modal-header .btn-close:hover {
    background-color: #b5835a; /* Couleur plus sombre au survol */
}

/* Contenu du modal (photo) */
.modal-body {
    padding: 20px;
    text-align: center;
}

/* Image dans le modal */
.modal-body img {
    border: 5px solid #444; /* Bordure autour de la photo */
    border-radius: 10px; /* Coins arrondis */
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.pagination a, .pagination span {
    margin: 0 5px;
    padding: 8px 8px;
    text-decoration: none;
    background: #fddcc8;

    border-radius: 5px;
    color: #333;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    background-color: #fcbe9b;
    color: white;
}
