/* Styles public pour home promo - home.css */
body.public-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Segoe UI', sans-serif;
}

.display-4 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

.lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.3em;
}

.btn-primary.btn-lg {
    background: #ff6b6b;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary.btn-lg:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.3);
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.price-big {
    font-size: 3em;
    color: #007bff;
    font-weight: bold;
    margin: 10px 0;
}

.list-unstyled li {
    margin: 8px 0;
    font-size: 1.1em;
}

.badge {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 { font-size: 2.5em; }
    .price-big { font-size: 2.5em; }
    .btn-primary.btn-lg { padding: 12px 30px; font-size: 1em; }
}

/* Fix visibilité h2 features sur fond bleu - home.css */
h2 {
    color: white !important;  /* Blanc pour contraster */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);  /* Ombre noire pour "pop" */
    font-weight: bold;
    font-size: 2.5em;  /* Un peu plus grand pour impact */
}

h2.text-center {
    margin-bottom: 3rem;  /* Plus d'espace sous le titre */
}

/* Si tu veux aussi pour le h2 des plans */
h2:nth-of-type(2) {  /* Le deuxième h2 (plans) */
    color: #f8f9fa;  /* Gris clair si tu préfères varier */
}

/* Fix visibilité h2 plans + p sur fond bleu - home.css */
.row.justify-content-center h2 {
    color: white !important;  /* Blanc pour contraster */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);  /* Ombre pour pop */
    font-weight: bold;
    font-size: 2.2em;  /* Légèrement plus petit que features si tu veux varier */
}

.row.justify-content-center h2 + p {
    color: rgba(255,255,255,0.9) !important;  /* Gris clair pour le texte sous h2 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);  /* Ombre légère */
    font-size: 1.2em;
}

/* Si tu veux appliquer à tous les h2/p sur cette page (plus safe) */
h2, h2 + p {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}