/* =================================== */
/*    Feuille de style pour voyageur.html     */
/* =================================== */

.properties-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: var(--light-color);
    min-height: calc(100vh - 250px); /* Hauteur minimale pour centrer verticalement */
}

.property-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    width: 100%;
    overflow: hidden; /* Pour que les coins de l'image soient arrondis */
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.property-card img {
    width: 100%;
    height: auto;
    display: block;
}

.property-card-content {
    padding: 30px;
}

.property-card-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 10px;
}

.property-card-details {
    color: #777;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Le bouton utilise le style global .cta-button */