/* ============================================================================= */
/* CSS RESPONSIVE OPTIMISÉ - GARDE LE HEADER INTACT, OPTIMISE LE RESTE        */
/* ============================================================================= */

/* Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-bottom: 70vh;
    background: #d0064a05;
    overflow-x: hidden;
}

h1 {
    font-family: 'Oleo Script Swash Caps', cursive;
}

p {
    font-size: 20px;
    line-height: 30px;
}

.hero-content h1 {
    color: white;
    font-size: 70px;
    font-family: 'Oleo Script Swash Caps', cursive;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: 1.40px;
    word-wrap: break-word
}

/* =============== SECTION HÉRO (INCHANGÉE) =============== */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(154, 0, 61, 0.9);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 50px;
}

/* =============== NAVBAR (INCHANGÉE) =============== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin: 0 2rem;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.navbar .bord-image img {
    height: 50px;
    width: 5rem;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links li a {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f72c80;
}

.language-login {
    display: flex;
    align-items: center;
    gap: 25px;
}

.language-login select {
    background-color: rgba(154, 0, 61, 0.9);
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
}

.login-btn {
    background-color: #f72c80;
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #d91a6b;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #f72c80;
    outline-offset: 2px;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(154, 0, 61, 0.95);
    z-index: 999;
    padding: 2rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-overlay.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #f72c80;
}

.mobile-login-btn {
    background-color: #f72c80;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.mobile-login-btn:hover {
    background-color: #d91a6b;
    color: white;
}

.close-mobile-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* =============== HERO CONTENT (INCHANGÉ) =============== */

/* Conteneur principal du contenu (Texte + Image Couple) */

.hero-container {
    width: 100%;
    max-width: 1200px; /* Largeur maximale pour le centrage */
    margin: 0 auto;
    padding: 0 20px;
    flex-grow: 1; /* Prend l'espace restant sous la navbar */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pousser le contenu vers le bas (au-dessus des bordures) */
    padding-bottom: 20px;
}

/* Conteneur Flex pour aligner le texte (gauche) et l'image (droite) */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Aligner les éléments en bas */
    flex-grow: 1;
    margin-bottom: 50px; /* Espace au-dessus des bordures si elles existent */
    padding: 0 40px;
}

/* Texte du header (Celebrer la beauté...) */
.hero-title {
    color: #fff;
    font-size: 3.5rem; /* Ajustez la taille selon l'effet désiré */
    font-weight: 400; /* Plus léger que Bold */
    font-style: italic; /* Important pour correspondre à la maquette */
    line-height: 1.2;
    max-width: 50%; /* Le texte prend la moitié de l'espace */
    margin: 0;
    /* Vous pourriez avoir besoin d'une font-family spécifique ici */
    /* font-family: 'VotrePoliceItalique', serif; */ 
}

/* Conteneur de l'image du couple */
.hero-image-wrapper {
    position: relative;
    /* Définir une largeur pour l'image */
    width: 50%; 
    height: 100%;
    display: flex;
    justify-content: flex-end; /* Pousser l'image à droite */
    align-items: flex-end; /* Aligner l'image en bas */
}

.hero-image-wrapper img {
    /* L'image doit sortir du flux pour donner cet effet de hauteur */
    position: absolute; 
    bottom: -20px; /* Soulève légèrement ou aligne l'image en bas */
    right: 0;
    height: auto;
    /* Ajustez la largeur de l'image elle-même */
    width: 500px; /* Largeur spécifique ou utiliser une valeur en % */ 
    object-fit: cover;
    z-index: 3; /* Assurez-vous qu'elle est au-dessus de tout le reste dans l'overlay */
    /* Appliquez ici les bordures si vous les avez autour de l'image */
}


/* --- Media Queries pour les petits écrans --- */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column; /* Empiler le texte et l'image */
        align-items: center;
        text-align: center;
    }

    .hero-title {
        max-width: 90%;
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .hero-image-wrapper {
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-image-wrapper img {
        position: static; /* Rendre l'image normale sur mobile */
        width: 80%;
        max-width: 400px;
        bottom: auto;
    }
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    margin-top: 0px;
    padding: 0;
    gap: 190px;
}

.hero-content h1 {
    color: white;
    font-size: 2.5rem;
    line-height: 70px;
    padding-left: 10rem;
    width: 250rem;
    font-family: 'Oleo Script Swash Caps', cursive;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-people-container {
    position: relative;
    height: auto;
    margin-top: -40px;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
    margin-right: 0;
}

.hero-people-f {
    position: absolute;
    left: 0;
    top: 20px;
    transform: translateX(-55%);
    z-index: 5;
}

.hero-people-f img {
    height: 448px;
    width: auto;
    margin-top: 30px;
}

.hero-people-g {
    position: relative;
    z-index: 4;
}

.hero-people-g img {
    height: 498px;
    width: auto;
    margin-right: -25px;
}

header {
    height: 12rem;
    width: 100%;
}

.bord {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    margin-top: 2rem;
}

.bord-left, .bord-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 35px;
    z-index: 3;
    overflow: hidden;
}

.bord-left {
    left: 0;
}

.bord-right {
    right: 0;
}

.bord-left img,
.bord-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============== MAIN CONTENT RESPONSIVE =============== */
main {
    margin-top: 10vh;
}

main .nos-prod {
    align-content: center;
    justify-content: center;
    display: flex;
    gap: 15px;
    margin-bottom: 5rem;
}

main .nos-prod h1 {
    color: #C00746F0;
    font-size: 3rem;
}

.nos-prod hr {
    height: 4px;
    background-color: #C00746F0;
    border: none;
    margin: 30px;
    width: 150px;
    opacity: 1;
    filter: none;
}

main .nos-collect {
    align-content: center;
    justify-content: center;
    display: flex;
    gap: 15px;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

main .nos-collect h1 {
    color: #C00746F0;
    font-size: 3rem;
}

.nos-collect hr {
    height: 4px;
    background-color: #C00746F0;
    border: none;
    margin: 30px;
    width: 150px;
    opacity: 1;
    filter: none;
}

.prod {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.prod .card {
    flex: 0 1 calc(25% - 1.5rem);
    max-width: 18rem;
}

.bot-voir {
    margin-top: 6rem;
    width: auto;
}

.bot-voir button {
    height: 3rem;
    width: 10rem;
    color: #ffff;
    font-size: 20px;
    background-color: #C00746F0;
}

.art-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.art-card:hover .card-img-top {
    transform: scale(1.05);
}

.btn-dark {
    background-color: #9a003d;
    border: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #7a002f;
    transform: translateY(-2px);
}

.propos {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card,
.card-body,
.img-fluid {
    background-color: transparent !important;
    padding: 0px;
}

.image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-profile {
    background-color: white;
    border-radius: 15px;
    padding-top: 60px;
    position: relative;
    box-shadow: 0 8px 20px rgba(189, 18, 80, 0.2);
    transition: all 0.3s ease-in-out;
    height: 100%; 
    min-height: 100%; 
    display: flex; 
    flex-direction: column; 

}

.card-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(189, 18, 80, 0.3);
}

.card-profile .img-circle {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid #bd1250;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
}

.card-profile h5 {
    margin-top: 60px;
    font-weight: bold;
}

.card-profile p {
    font-size: 0.95rem;
}

.shadow-pink {
    box-shadow: 0 8px 15px rgba(189, 18, 80, 0.3);
}

/* =============== FOOTER RESPONSIVE =============== */
.footer-section {
    position: absolute;
    background-color: #9a003d;
    color: white;
    height: 50rem;
    width: 100%;
    overflow: hidden;
    font-family: 'Actor', sans-serif;
    z-index: 10;
}

.footer-section .bord-left,
.footer-section .bord-right {
    position: absolute;
    top: 0;
    height: 50rem;
    width: 25px;
    z-index: 1;
}

.footer-section .bord-left {
    left: 0;
}

.footer-section .bord-right {
    right: 0;
}

.footer-section .bord-left img,
.footer-section .bord-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-section h5,
.footer-section h6 {
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-section .footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
}

.footer-section .footer-link:hover {
    text-decoration: underline;
}

.footer-section .custom-input {
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: 0.9rem;
}

.footer-section .custom-input::placeholder {
    color: #ddd;
}

.footer-bottom {
    font-size: 16px;
    color: #f5f5f5;
}

a.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    border: none;
    width: 10rem;
    border-radius: 0;
    background-color: #9a003d;
    color: #fff;
    transition: background-color 0.3s ease;
}

a.btn:hover {
    background-color: #9a003d;
    color: #fff;
}

body {
    background-color: #fff0f5;
    font-family: 'Actor', sans-serif;
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.badge-custom {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #9a003d;
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 4px;
}

.product-card {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: white;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.pagination .page-link {
    color: #9a003d;
}

.pagination .active .page-link {
    background-color: #9a003d;
    color: white;
    border-color: #9a003d;
}

.filter-btn {
    background-color: white;
    border: 1px solid #9a003d;
    color: #9a003d;
    margin-right: 10px;
    margin-bottom: 15px;
}

.filter-btn:hover {
    background-color: #9a003d;
    color: white;
}

.section-title {
    font-family: 'Oleo Script Swash Caps', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #333;
    position: relative;
}

.gallery-card {
    border: none;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* ============================================================================= */
/* RESPONSIVE DESIGN - TABLETTES (768px - 1199px)                              */
/* ============================================================================= */
@media (min-width: 768px) and (max-width: 1199px) {
    /* Header reste inchangé - seulement quelques ajustements mineurs */
    .navbar {
        margin: 0 1rem;
        padding: 0 1rem;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .overlay {
        padding: 20px 25px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 50px;
        padding-left: 4rem;
        width: 60rem;
        margin-bottom: 5rem;
        margin-top: -10rem;
        text-align: center;
    }

    .hero-people-f img {
        margin-top: 5rem;
        height: 400px;
    }

    .hero-people-g img {
        margin-top: 6rem;
        height: 450px;
    }

    .bord-left, .bord-right {
        width: 20px;
    }

    /* Main content adapté pour tablettes */
    main .nos-prod h1,
    main .nos-collect h1 {
        font-size: 2.5rem;
    }

    .nos-prod hr,
    .nos-collect hr {
        width: 120px;
        margin: 20px;
    }

    .prod .card {
        flex: 0 1 calc(33.333% - 1.5rem);
        max-width: 16rem;
    }

    .card-img-top {
        height: 250px;
    }

    .bot-voir button {
        height: 2.5rem;
        width: 8rem;
        font-size: 18px;
    }

    /* Section à propos */
    .image-container {
        height: 300px;
    }

    .card-profile {
        padding-top: 50px;
    }

    .card-profile .img-circle {
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .card-profile h5 {
        margin-top: 50px;
        font-size: 1.1rem;
    }

    .card-profile p {
        font-size: 0.5rem;
    }

    /* Footer tablette */
    .footer-section {
        height: auto;
    }

    .footer-section .bord-left,
    .footer-section .bord-right {
        width: 20px;
        height: auto;
    }

    .footer-section h5,
    .footer-section h6 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        
    }

    .footer-section .footer-link {
        font-size: 20px;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section .custom-input {
        font-size: 0.85rem;
        margin-top: 0.5rem;
        margin-bottom: 0.8rem;
    }

    .footer-bottom {
        font-size:20px;
    }

}

/* ============================================================================= */
/* RESPONSIVE DESIGN - MOBILE (max-width: 767px)                               */
/* ============================================================================= */
@media (max-width: 767px) {
    /* Header mobile - navigation masquée/affichée */
    .hero-people-container {
        display: none !important;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 0 1rem;
        flex-wrap: nowrap;
    }

    .mobile-menu-toggle {
        display: block;
        order: 1;
        font-size: 1.2rem;
        padding: 0.3rem;
    }

    .logo {
        order: 2;
        flex: 1;
        text-align: center;
    }

    .logo img {
        height: 40px;
    }

    .language-login {
        order: 3;
        gap: 10px;
        flex-shrink: 0;
    }

    .language-login select {
        font-size: 11px;
        padding: 0.2rem 0.3rem;
    }

    .language-login a {
        font-size: 14px;
    }

    .nav-links,
    .login-btn {
        display: none !important;
    }

    .bord-left, .bord-right {
        width: 12px;
    }

    .overlay {
        padding: 15px 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
        padding-left: 0;
        width: 100%;
        margin-bottom: 0;
        text-align: center;
    }

    .hero-section {
        height: 60vh;
        min-height: 450px;
    }

    /* Main content mobile */
    main {
        margin-top: 10vh;
    }

    main .nos-prod,
    main .nos-collect {
        flex-direction: column;
        text-align: center;
        margin-bottom: 3rem;
    }

    main .nos-prod h1,
    main .nos-collect h1 {
        font-size: 1.8rem;
        margin: 0 1rem;
    }

    .nos-prod hr,
    .nos-collect hr {
        width: 80px;
        margin: 15px auto;
        height: 3px;
    }

    .prod {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .prod .card {
        flex: none;
        max-width: 100%;
        margin: 0 auto;
    }

    .card-img-top {
        height: 200px;
    }

    .bot-voir {
        margin-top: 3rem;
    }

    .bot-voir button {
        height: 2.2rem;
        width: 7rem;
        font-size: 16px;
    }

    /* Collections mobile */
    .prod-grid .row {
        margin-bottom: 2rem;
    }

    .prod-grid .col-md-4,
    .prod-grid .col-md-6 {
        margin-bottom: 1.5rem;
    }

    /* Section à propos mobile */
    .propos .card.mb-3 {
        margin: 0 1rem;
    }

    .propos .row.g-0 {
        flex-direction: column;
    }

    .propos .col-md-6:last-child {
        padding: 2rem 1rem !important;
    }

    .image-container {
        height: 250px;
    }

    /* Témoignages mobile */
    .card-profile {
        padding-top: 40px;
        margin: 0 1rem 2rem;
    }

    .card-profile .img-circle {
        width: 60px;
        height: 60px;
        top: -30px;
        border-width: 2px;
    }

    .card-profile h5 {
        margin-top: 40px;
        font-size: 1rem;
    }

    .card-profile p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Footer mobile */
    .footer-section {
        height: auto;
        padding-top: 2rem;
    }

    .footer-section .container {
        padding: 2rem 1rem;
    }

    .footer-section .bord-left,
    .footer-section .bord-right {
        width: 8px;
        height: auto;
    }

    .footer-section h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section h6 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .footer-section .footer-link {
        font-size: 12px;
    }

    .footer-section .custom-input {
        font-size: 0.8rem;
        padding: 0.6rem;
        margin-bottom: 1rem;
    }

    .footer-section .ratio {
        margin-bottom: 1rem;
    }

    .footer-section .row.mb-5 {
        margin-bottom: 2rem !important;
    }

    .footer-section .row.text-center.text-md-start.mb-4 {
        margin-bottom: 2rem !important;
    }

    .footer-bottom {
        font-size: 11px;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom .small {
        order: 2;
    }

    .footer-bottom div:last-child {
        order: 1;
    }
}

/* ============================================================================= */
/* RESPONSIVE DESIGN - TRÈS PETIT MOBILE (max-width: 480px)                    */
/* ============================================================================= */
@media (max-width: 480px) {
    .navbar {
        padding: 0 0.5rem;
    }

    .mobile-menu-toggle {
        font-size: 1rem;
        padding: 0.2rem;
    }

    .logo img {
        height: 35px;
    }

    .language-login select {
        font-size: 10px;
        padding: 0.1rem 0.2rem;
    }

    .language-login a {
        font-size: 12px;
    }

    .overlay {
        padding: 10px 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.1;
    }

    .bord-left, .bord-right {
        width: 6px;
    }

    .hero-section {
        height: 55vh;
        min-height: 400px;
    }

    /* Main content très petit mobile */
    main .nos-prod h1,
    main .nos-collect h1 {
        font-size: 1.5rem;
    }

    .nos-prod hr,
    .nos-collect hr {
        width: 60px;
        height: 2px;
    }

    .card-img-top {
        height: 180px;
    }

    .bot-voir button {
        height: 2rem;
        width: 6rem;
        font-size: 14px;
    }

    .card-profile {
        margin: 0 0.5rem 1.5rem;
        padding: 1rem 0.8rem 1.5rem;
    }

    .card-profile .img-circle {
        width: 50px;
        height: 50px;
        top: -25px;
    }

    .card-profile h5 {
        margin-top: 35px;
        font-size: 0.9rem;
    }

    .card-profile p {
        font-size: 0.75rem;
    }

    /* Footer très petit mobile */
    .footer-section {
        height: auto;
    }

    .footer-section .bord-left,
    .footer-section .bord-right {
        width: 5px;
        height: auto;
    }

    .footer-section .container {
        
        padding: 1.5rem 0.5rem;
    }

    .footer-section h5 {
        font-size: 0.9rem;
    }

    .footer-section h6 {
      
        font-size: 0.8rem;
    }
    

    .footer-section .footer-link {
        font-size: 11px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-section .custom-input {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .footer-bottom {
        font-size: 10px;
    }
}

/* ============================================================================= */
/* CORRECTIONS GÉNÉRALES RESPONSIVE                                             */
/* ============================================================================= */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .hero-section,
    .overlay {
        overflow-x: hidden;
    }

    .mobile-menu-toggle:focus,
    .mobile-nav-links a:focus {
        outline: 2px solid #f72c80;
        outline-offset: 2px;
    }

    .mobile-nav-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    * {
        transition-duration: 0.2s !important;
    }

    /* Espacement amélioré pour mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Amélioration de la lisibilité */
    p {
        font-size: 16px;
        line-height: 24px;
    }
}