/* Responsive styles for DomiSoins */

/* Hero section mobile optimization */
@media screen and (max-width: 768px) {
    .hero .container {
        display: flex;
        flex-direction: column;
        padding-top: 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-img {
        margin-top: 1.5rem;
        max-width: 90%;
    }
    
    /* Beta signup form responsive style */
    .beta-form-group {
        flex-direction: column;
        box-shadow: none;
    }
    
    .beta-form-group input[type="email"] {
        border-right: 1px solid var(--medium-gray);
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .beta-form-group .btn {
        border-radius: 5px;
        width: 100%;
        padding: 12px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
}

/* Adaptations spécifiques pour le formulaire */
@media screen and (min-width: 769px) {
    /* Sur les écrans larges, on assure que le formulaire et les infos de contact s'affichent correctement */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .contact-form {
        width: 100%;
        max-width: none;
    }
    
    .responsive-form {
        width: 100%;
        max-width: none;
    }
}
