/* Styles spécifiques pour les feature-cards dans la section "Pourquoi choisir SelfieSmiles" */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #ff4081;
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
    position: relative;
    overflow: hidden;
    margin: 15px;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff4081, #ff8db3);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(255, 64, 129, 0.5);
    border-color: #ff8db3;
}

.feature-icon {
    font-size: 3.5rem;
    color: #ff4081;
    margin-bottom: 20px;
    background-color: rgba(255, 64, 129, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    border: 2px solid #ff4081;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.5);
}

.feature-card h3 {
    color: #ff4081;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.feature-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #ff4081;
}

.feature-card p {
    color: #ffffff;
    line-height: 1.6;
}

/* Styles pour les formules dans la page "Nos offres" */
.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #ff4081;
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
    position: relative;
    overflow: hidden;
    margin: 15px;
}

.pricing-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff4081, #ff8db3);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(255, 64, 129, 0.5);
    border-color: #ff8db3;
}

.pricing-card h3 {
    color: #ff4081;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.pricing-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #ff4081;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 20px 0;
    text-shadow: 0 2px 5px rgba(255, 64, 129, 0.3);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #444;
    color: #ffffff;
    position: relative;
    padding-left: 30px;
}

.pricing-features li:before {
    content: "✓";
    color: #ff4081;
    position: absolute;
    left: 5px;
    font-weight: bold;
}

.pricing-card .cta-button {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff4081;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #ff4081;
    box-shadow: 0 4px 8px rgba(255, 64, 129, 0.3);
}

.pricing-card .cta-button:hover {
    background-color: transparent;
    color: #ff4081;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 64, 129, 0.4);
}

.popular-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #ff4081;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Amélioration des images dans la section "Parfait pour tous vos événements" */
.event-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changé de 'cover' à 'contain' pour montrer l'image entière */
    transition: transform 0.5s ease;
    background-color: #2a2a2a; /* Fond pour les images */
}

.event-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 3px solid #ff4081;
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
    margin: 15px;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(255, 64, 129, 0.5);
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    color: #ff4081;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.event-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #ff4081;
}
