/* Conteneur principal */
.mentions-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Image à gauche */
.mentions-image {
    width: 33.33%;
    height: 100%;
    position: relative;
}

.mentions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
  
.overlay-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
  
.overlay-image-container img {
    width: 20vw; /* ou toute autre taille adaptée */
    height: auto;
    opacity: 1; 
}

/* Formulaire à droite */
.mentions-div {
    width: 66.67%;
    display: flex;
    flex-direction: column;
    padding-top: 10vh;
    padding-left: 10vw; 
    overflow-y: auto; 
}

.mentions-div h2 {
    font-size: 28px;
    font-family: "HelveticaMd";
    color: #10243D;
    margin-bottom: 20px;
}

.mentions-div p {
    font-size: 18px;
    color: #10243D;
    margin-bottom: 20px;
}


.legal-info strong {
    color: #10243D;
}

.legal-info a {
    color: #CB9267; /* doré Antares */
    text-decoration: none;
}
  
.legal-info a:hover {
    text-decoration: underline;
}

/* =================================== */
/* Mobile Adaptation - Mentions Page   */
/* =================================== */

@media (max-width: 768px) {
    
    /* Conteneur principal */
    .mentions-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    /* Image section - réduite sur mobile */
    .mentions-image {
        width: 100%;
        height: 40vh;
        min-height: 200px;
        position: relative;
    }
    
    .mentions-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
    }
    
    /* Logo overlay adapté */
    .overlay-image-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .overlay-image-container img {
        width: 25vw;
        max-width: 100px;
        height: auto;
        opacity: 1;
    }
    
    /* Section contenu */
    .mentions-div {
        width: 100%;
        padding: 20px;
        padding-top: 30px;
        overflow-y: visible;
    }
    
    /* Bannière blanche */
    .mentions-div .white-banner {
        margin-bottom: 20px;
        padding: 0;
    }
    
    .mentions-div .white-banner-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .mentions-div .white-banner-content h2 {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    /* Titres des sections */
    .mentions-div h2 {
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    
    .mentions-div h2:first-of-type {
        margin-top: 0;
    }
    
    /* Texte */
    .mentions-div p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    /* Informations légales */
    .legal-info {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .legal-info h2 {
        font-size: 18px;
        margin-bottom: 12px;
        margin-top: 20px;
        color: #10243D;
    }
    
    .legal-info p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    /* Liens */
    .legal-info a {
        color: #CB9267;
        text-decoration: none;
        word-break: break-all;
    }
    
    .legal-info a:hover {
        text-decoration: underline;
    }
    
    /* Espacement des sections */
    .legal-info br {
        display: block;
        margin: 15px 0;
    }
    
    /* Bannière blanche du bas */
    .white-banner {
        padding: 20px 0;
        margin-top: 20px;
    }
    
    /* Footer adapté */
    .antares-footer {
        margin-top: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
    }
    
    .footer-content span,
    .footer-content .mentions-link {
        font-size: 14px;
    }
}
