/* Styles spécifiques pour la page d'accueil */

/* Newsletter section spécifique à la home */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, hsla(220, 45%, 8%, 0.6) 0%, hsla(220, 45%, 4%, 0.8) 100%);
    border-top: 1px solid hsl(220, 40%, 15%);
    border-bottom: 1px solid hsl(220, 40%, 15%);
    margin: 4rem 0 0 0;
    position: relative;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, hsla(48, 100%, 50%, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-content p {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: hsla(220, 45%, 8%, 0.6);
    color: var(--foreground);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px hsla(48, 100%, 50%, 0.1);
    background: hsla(220, 45%, 8%, 0.8);
}

.newsletter-input::placeholder {
    color: var(--muted-foreground);
}

/* Responsive pour newsletter */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 0;
        margin: 3rem 0 0 0;
    }
    
    .newsletter-content h3 {
        font-size: 1.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
}

