/* Configuration des polices personnalisées */
.font-title {
    font-family: 'Fraunces', serif;
}

.font-body {
    font-family: 'Inter', sans-serif;
}

/* Styles globaux pour les textes */
p, button, input {
    /* On utilise Inter (chargée dans le HTML) au lieu d'Arial */
    font-family: 'Inter', sans-serif;
    /* Le lissage rend le texte plus net, moins "pâté" */
    font-weight: 400;

}
body{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Transitions fluides pour les changements d'état */
.fade-enter {
    opacity: 0;
    transform: translateY(10px);
}

.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
#subscription-form{
    margin-top: 50px;
}
.fade-exit {
    opacity: 1;
}

.fade-exit-active {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Style pour l'input + bouton fusionnés */
.input-group {
    display: flex;
    position: relative;
    max-width: 381px;
    margin: 0 auto;
    align-items: center;
}

.input-group input {
    display: flex;
    width: 381px;
    padding: 12px 205px 12px 20px;
    align-items: center;
    border-radius: 37px;
    border: 1px solid #000;
    background: #FFF;
    color: #908F8F;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    outline: none;
}

.input-group input::placeholder {
    color: #908F8F;
}

.input-group button {
    display: flex;
    position: absolute;
    right: 0px;
    width: 185px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 37px;
    border: 1px solid #000;
    background: #000;
    color: #FFF;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.input-group button:hover {
    background: #333;
}

.input-group button:disabled {
    background: #666;
    cursor: not-allowed;
}

/* Bouton pilule classique */
.btn-pill {
    background: #000;
    color: #fff;
    padding: 16px 48px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
}

.btn-pill:hover {
    background: #333;
}

/* Logo principal */
.logo-main {
    width: 483px;
    height: 195px;
    aspect-ratio: 161/65;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.logo-state-1 {
    margin-bottom: 80px;
}

/* Texte d'introduction état 1 */
.intro-text {
    max-width: 458px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 80px;
    color: #000;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

/* Message de succès état 3 */
.success-message {
    margin-top: 60px !important;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    text-align: center;
    font-family: Arial;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    width: 100%;
    max-width: 481px;
}

/* Google reCAPTCHA */
.g-recaptcha {
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

/* Barre de séparation état 3 */
.separator-line {
    width: 400px;
    height: 1px;
    background: #000;
    margin: 20px auto;
}

/* SVG fixé à droite sur desktop */
.svg-right {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: auto;
    max-width: max-content;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1024px) {
    .svg-right {
        display: none;
    }
}
