/* ----- FONTS & GLOBAL ----- */

body {
    margin: 0;
    padding: 0;
    background: #fdf7e8; /* Fond crème */
    font-family: 'Inter', sans-serif;
    color: #333;
    text-align: center;
}

/* ----- CONTAINER ----- */

.container {
    max-width: 800px;
    margin: 60px auto 30px;
    padding: 0 20px;
}

/* ----- BADGE ----- */

.badge {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6d5cff;
    margin-bottom: 25px;
}

/* ----- TITRES ----- */

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.15;
    margin: 0 0 25px;
    color: #1d1d1d;
}

/* ----- SOUS-TITRE ----- */

.subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
}

/* ----- FORM EMAIL ----- */

.email-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.email-form input {
    padding: 12px 16px;
    width: 280px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.email-form button {
    padding: 12px 20px;
    background: #9c8ad1;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.email-form button:hover {
    background: #8b77c4;
}

/* ----- NOTE ----- */

.note {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

/* ----- FOOTER ----- */

footer {
    /* margin-top: 100px; */
    padding-bottom: 30px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.socials a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    opacity: 0.75;
}

.socials a:hover {
    opacity: 1;
}

copyright {
    font-size: 14px;
    color: #777;
}

.w-full {
    width: 100%;
}

.h-auto{
    width: 100%;
}

/* ----- RESPONSIVE ----- */

@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input {
        width: 100%;
    }

    .email-form button {
        width: 100%;
        justify-content: center;
    }
}
