body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background-color: #fff;
}

.hero-section {
    padding: 60px 0;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.search-bar {
    background: white;
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.btn-primary-custom {
    background-color: #ff385c; /* Couleur type Airbnb */
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
}

.btn-primary-custom:hover {
    background-color: #e31c5f;
    color: white;
}