/* 🌌 Fond dynamique */
body {
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    background: black;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ✅ Boutons stylés */
.btn {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
    margin: 10px;
}

.btn:hover {
    transform: scale(1.1);
}

/* ✅ TARIFS */
.tarif-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tarif-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.tarif-box:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ✅ AVIS CLIENTS */
.avis-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.avis-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    width: 250px;
}

/* 🎭 Apparition au scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 🌓 MODE SOMBRE/CLAIR */
#theme-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

body.light-mode {
    background: white;
    color: black;
}
