/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: url('./img/background3.jpg') no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(0px);
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Conteneur principal */
.container {
    width: 100%;
    max-width: 600px;
    padding: 26px 36px;
    text-align: center;
    background-color: rgb(66 1 85 / 70%);
    margin: 23px 5%;
}

/* Titres et textes */
.h1 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 15px;
}

.h2 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-top: 23px;
    color: white;
    text-transform: normal;
    line-height:38px;
    margin-bottom: 12px;
}

.h4 {
    font-size: 7rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 1px 1px 35px #eb6af7;
    line-height: 98px;
}

/* Bouton Call to Action */
.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    
    background-color: #f40146;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    
    animation: pulse 1.5s infinite ease-in-out;
}

.cta:hover {
    background-color: #fff;
    color: #f40146;
    transform: scale(1.05);
    animation-play-state: paused;
}

/* Animation du bouton */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .h1 {
        font-size: 1rem;
    }

    .h2 {
        font-size: 1.3rem;
        line-height:24px;
        margin-bottom: 0px;
    }

    .h4 {
        font-size: 3.2rem;
        line-height: 47px;
    }

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