/* Styles spécifiques pour la page À propos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}


/*Style contenu*/

h1, h2 {
    background: var(--dgrad-bleu);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font: var(--font-size-xxl);
}

h2 {
    margin-bottom: 8px;
    font: var(--font-size-l); 
}

.lien-site {
  color: var(--text-color);
  text-decoration: underline;
  cursor: pointer;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

.mentions-legales-section {
    background-image: url('svg/hero-section-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.mentions-legales-container {
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mentions-legales-content {
    border: 3px solid #ffffff30;
    background: rgba(255, 255, 255, 0.30);
    box-shadow: 0px 4px 26.3px 0px rgba(153, 153, 153, 0.35);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 48px 128px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.mentions-legales-title {
    margin-bottom: 56px;
    text-align:center;
}

.mentions-legales-text {
    margin-bottom: 56px;
}

.mentions-legales-text p {
    text-align: left;
}

.mentions-legales-text p:last-child {
    margin-bottom: 0;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablette - 1024px et moins */
@media screen and (max-width: 1024px) {
    .mentions-legales-section {
        padding: 60px 20px;
        margin-top: 60px;
    }
    
    .mentions-legales-content {
        padding: 40px 80px;
        border-radius: 20px;
    }
    
    .mentions-legales-title {
        margin-bottom: 40px;
    }
    
    .mentions-legales-text {
        margin-bottom: 40px;
    }
}

/* Tablette portrait - 768px et moins */
@media screen and (max-width: 768px) {
    .mentions-legales-section {
        background-image: url('svg/background-pages-secondaires-mobile.svg');
        border-radius: 0 0 30px 30px;
        padding: 40px 15px;
        margin-top: 0px;
    }
    
    .mentions-legales-content {
        padding: 32px 48px;
        border-radius: 30px;
        border: 2px solid #ffffff30;
    }
    
    .mentions-legales-title {
        margin-bottom: 32px;
    }
    
    .mentions-legales-text {
        margin-bottom: 32px;
    }
    
    h2 {
        margin-bottom: 16px;
    }
}

/* Mobile - 480px et moins */
@media screen and (max-width: 480px) {
    * {
        font-size: 16px;
    }

    .mentions-legales-section {
        padding: 30px 10px;
    }
    
    .mentions-legales-content {
        padding: 24px 24px;
        border-radius: 12px;
        border: 1px solid #ffffff30;
        margin: 0 5px;
    }
    
    .mentions-legales-title {
        font: var(--font-size-xxl-m);
    }
    
    .mentions-legales-text {
        margin-bottom: 24px;
    }
    
    h2 {
        margin: 40px 0 16px 0;
        font: var(--font-size-l-m);
    }
    
    .mentions-legales-text br {
        display: none;
    }
}

/* Très petit mobile - 320px et moins */
@media screen and (max-width: 320px) {
    .mentions-legales-content {
        padding: 20px 16px;
        margin: 0 2px;
    }
    
    .mentions-legales-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    p {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
}