/* Police et couleurs */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    background: url('images/banner.jpg') no-repeat center center;
    font-family: "adobe-garamond-pro", Garamond, "Times New Roman", serif;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
}

.hero-section h1 {
    position: relative;
    z-index: 1;
}

/* Effet hover sur les photos */
.photo-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: scale(1.03);
}

.photo-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pied de page */
footer {
    background-color: #212529 !important;
}