body {
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background: linear-gradient(to bottom, #fce4ec, #f8bbd0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Titre principal style plume */
.main-title {
    font-family: 'Great Vibes', cursive;
    font-size: 70px;
    color: #d81b60;
    margin-top: 40px;
    margin-bottom: 0;
    text-align: center;
}

.subtitle {
    font-size: 18px;
    color: #ad1457;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.card {
    background: white;
    width: 350px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.card h2 {
    color: #d81b60;
    margin-bottom: 20px;
    font-size: 24px;
    letter-spacing: 1px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3c1d8;
    font-size: 16px;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list strong {
    color: #d81b60;
    font-weight: bold;
}

/* Bouton de réservation */
.booking-btn {
    display: block;
    margin-top: 25px;
    padding: 12px 20px;
    background: #d81b60;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.booking-btn:hover {
    background: #ad1457;
    transform: scale(1.05);
}

/* 📱 VERSION MOBILE */
@media (max-width: 480px) {

    body {
        padding: 10px;
    }

    .main-title {
        font-size: 48px;
        margin-top: 20px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .card {
        width: 100%;
        padding: 20px;
    }

    .price-list li {
        font-size: 14px;
        padding: 8px 0;
    }

    .booking-btn {
        font-size: 16px;
        padding: 10px 15px;
    }
}
