/* Réinitialisation de base */
body, h1, h2, h4, p, a {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    
}

body {
    background: url('./img/background.jpg') no-repeat center center fixed;
    background-size: cover; /* L'image couvre tout l'écran */
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    background-color: rgb(255 255 255 / 15%);
    /* border: 1px solid #ffcd00;
    box-shadow: inset 41px 0px 40px 40px #000; */
}



/* Titres principaux */
.title {
    font-size: 2.3rem;
    font-weight: 700;
    color:#fff!important;
    margin-bottom:15px;
}

.title_2 {
    font-size: 3.3rem;
    font-weight: 500;
    margin-top: 15px;
    color: white;
    text-transform: uppercase;
}

/* Sous-titre avec le prix */
.price {
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 1px 1px 22px #ffff;
    line-height: 90px;
    
}

/* Bouton Call to Action */
.cta_container {
    margin-top: 20px;
    text-transform: uppercase;
}

.cta {
    display: inline-block;
    background-color: #f40146;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
   transition: background-color 0.3s ease;
    animation: pulse 1.5s infinite ease-in-out; /* Ajout de l'animation */
}

.cta:hover {
    background-color: #fff;
    color:#f40146;
    animation-play-state: paused; /* Met l'animation en pause au survol */
}

/* Animation du bouton */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08); /* Le bouton grossit légèrement */
    }
}

/* Responsive : Mobile */
@media (max-width: 767px) {
    .title {
        font-size: 1rem;
    }
.title_2 {
    font-size: 1.3rem;}
    
    .price {
        font-size: 3.2rem;
        line-height: 47px;
        
    }

    .cta {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

.container {margin: 23px 5%;
padding:26px 36px}