@font-face {
    font-family: 'Tallica';
    src: url('../fonts/Tallica-Medium.ttf') format('truetype');
} 

:root {
    --color-orange: rgb(239, 191, 4);
    --color-orange-rgb: 239, 191, 4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.section-container {
    width: 50%;
    position: relative;
    height: 100%;
}

.section {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s;
    transform: translateY(100%);
    background-color: #000000;
    overflow: hidden;
    color: #ffffff;
}

.grid-container {
    display: grid;
    grid-template-rows: repeat(10, 1fr);
    height: 100%;
    width: 100%;
    margin: 0 auto;
}


.left-section-2 {
    background-color: var(--color-orange);
}

.left-section-1 img {
    width: 70%;
    height: 100%;
    object-position: 0% 20%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .left-section-1 img {
        width: 100%;
        height: 100%;
        object-position: 0% 20%;
        object-fit: cover;
        z-index: 100;
    }
}

.right-section-7 img {
    height: 70%;
    width: 70%;
    object-position: 0% 50%;
    object-fit: contain;
}

.text-content.left-text-1 {
    grid-row: 1 / 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background-color: #000000;
    margin-top: 3em;
    margin-bottom: 4em;
}

.presentation-text {
    font-family: 'Sintony', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #ffffff;
    max-width: 90%;
    text-align: center;

    font-weight: 300;
}

.presentation-text-bold {
    color: rgb(233, 207, 102);
}

.signature-text-bold {
    color: rgb(219, 176, 7);
}

.presentation-title-h2 {
    font-family: 'Sintony', sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #ffffff;
    max-width: 90%;
    text-align: center;

    font-weight: 700;
}

.presentation-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Sintony', sans-serif;
    font-size: 0.9rem;
    list-style: none;
    margin-left: 1rem;
}

.presentation-list li {
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.signature-text {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    font-family: 'Sintony', sans-serif;
    font-size: 0.9rem;
    list-style: none;
}


.signature-text li {
    margin-bottom: 0.5rem;
}

.presentation-title {
    font-family: 'Tallica', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    text-align: center;
}

.presentation-title-h3 {
    font-family: 'Tallica', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    text-align: center;
    margin-top: 1rem;
}

.image-content.left-image-1 {
    grid-row: 8 / 11 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin-top: -1% !important;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-logo {
    width: 300px;
    height: 100px;
    margin: 1rem auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.top-logo img {
    width: 100%;
    height: auto;
    min-height: 200%;
    object-fit: cover;
    object-position: center;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: white;
}

.description {
    font-family: 'Sintony', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
}
/* Styles pour la section droite */

.image-content.right-image-1 {
    overflow: hidden;
    grid-row: 1 / 6;
    height: 100%;
    flex: 0 0 40%;
}

.chef-image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;;
}

.text-content.right-text-1 {
    grid-row: 6 / 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #ffffff;
    color: #000000;
    margin-bottom: auto;
    height: 100%;
}

.signature-title {
    font-size: 1.4rem;
    font-family: 'Tallica', sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
}



/* Navigation */
.navigation {
    position: fixed;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    left: 50%;
}

.nav-button.up {
    position: fixed;
    top: 2rem;
    transform: translateX(-50%);
}

.nav-button.down {
    position: fixed;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nav-button {
    background: transparent;
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}
.nav-button:hover svg {
    stroke: #ffffff;
}

.nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-button svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-orange);
    stroke-width: 1.5;
}
@media (max-height: 760px) {
    .top-logo {
        width: 200px;
        height: 100px;
    }
}
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        height: 100%;
        overflow-y: hidden;
    }

    .section-container {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transition: transform 0.5s ease;
    }

    .section-container.left {
        transform: translateY(0);
        z-index: 1;
    }

    .section-container.right {
        transform: translateY(100%);
        z-index: 2;
    }

    .section-container.right.active {
        transform: translateY(0);
    }

    .section-container.left.inactive {
        transform: translateY(-100%);
    }

    .section {
        position: relative;
        height: 100vh;
        transform: none !important;
    }

    .grid-container {
        height: 100vh;
        max-width: 100%;
        overflow: hidden;
    }

    .text-content.left-text-1 {
        grid-row: 1 / 7;
        padding: 0.5rem;
    }

    .presentation-text {
        font-size: 1.2rem;
        max-width: 95%;
        margin: 0 0 1rem 0;
    }

    .presentation-title {
        font-size: 2.5rem;
    }

    .presentation-list {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .top-logo {
        width: 400px;
        height: 200px;
        margin: 2rem auto 1.5rem;
    }

    .image-content.left-image-1 {
        grid-row: 8 / 11 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        overflow: hidden !important;
        margin-top: -1% !important;
    }

    .image-content img {
        width: 100%;
        height: 120%;
        margin-top: -1%;
    }

    .signature-text {
        font-size: 1.4rem;
    }
    .signature-title {
        font-size: 2.3rem;
    }

    .navigation {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        left: auto;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 10;
    }

    .nav-button.up,
    .nav-button.down {
        position: static;
        transform: none;
        background: transparent;
        border-color: var(--color-orange);
        stroke: var(--color-orange);
    }

    .nav-button {
        padding: 0.8rem;
        border-width: 1.5px;
    }

    .nav-button svg {
        width: 25px;
        height: 25px;
        stroke: var(--color-orange);
    }

    .section-container.right.active ~ .navigation .nav-button {
        background: transparent;
        border-color: var(--color-orange);
    }
    .section-container.left.active ~ .navigation .nav-button {
        background: transparent;
        border-color: var(--color-orange);
    }

    .section-container.right.active ~ .navigation .nav-button:hover {
        border-color: var(--color-orange);
        background: rgba(var(--color-orange-rgb), 0.3);
    }

    .section-container.left.active ~ .navigation .nav-button:hover {
        border-color: var(--color-orange)!important;
        background: rgba(var(--color-orange-rgb), 0.3)!important;
    }

    .section-container.right.active ~ .navigation .nav-button svg {
        stroke: var(--color-orange);
    }

    .section-container.left.active ~ .navigation .nav-button svg {
        stroke: var(--color-orange)!important;
    }
}

@media (max-width: 768px) {
    .presentation-text {
        font-size: 1rem;
    }

    .presentation-title {
        font-size: 1.3rem;
    }

    .presentation-list {
        font-size: 1rem;
    }

    .signature-text {
        font-size: 0.8rem;
    }
    .signature-title {
        font-size: 1.3rem;
    }


    .top-logo {
        width: 200px;
        height: 60px;
    }

    .navigation {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .nav-button {
        padding: 0.6rem;
        border-width: 1px;
    }

    .nav-button svg {
        width: 20px;
        height: 20px;
    }

    .image-content.left-image-1 {
        grid-row: 8 / 11 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        overflow: hidden !important;
        margin-top: -1% !important;
    }

    .image-content img {
        width: 100%;
        height: 120%;
        object-fit: cover;
        margin-top: -1%;
    }

    .text-content.left-text-1 {
        grid-row: 1 / 8 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0.5rem !important;
        background-color: #000000 !important;
        margin-top: 0.5em !important;
        margin-bottom: 1em !important;
        padding-top: 1rem !important;
    }

    .top-logo {
        width: 300px;
        height: 200px;
        margin: 1rem auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    } 
}

@media (max-width: 430px) {
    .top-logo {
        width: 200px !important;
        height: 100px !important;
    }
    .presentation-text {
        font-size: 0.8rem !important;
    }

    .presentation-title {
        font-size: 1rem !important;
    }
    
    .presentation-title-h2 {
        font-size: 0.9rem !important;
    }
    
    .presentation-title-h3 {
        font-size: 0.8rem !important;
    }

    .presentation-list {
        font-size: 0.8rem !important;
    }
    .signature-text {
        font-size: 0.7rem !important;
    }
    .signature-title {
        font-size: 1.3rem !important;
    }
    
    .text-content.left-text-1 {
        padding: 0.3rem !important;
        margin-top: 0.2em !important;
        margin-bottom: 0.5em !important;
        padding-top: 0.5rem !important;
    }
}

@media (max-width: 380px) {
    .top-logo {
        width: 150px !important;
        height: 120px !important;
    }
    .presentation-text {
        font-size: 0.6rem !important;
    }

    .presentation-title {
        font-size: 0.9rem !important;
    }
    
    .presentation-title-h2 {
        font-size: 0.8rem !important;
    }
    
    .presentation-title-h3 {
        font-size: 0.7rem !important;
    }

    .presentation-list {
        font-size: 0.7rem !important;
    }

    .signature-text {
        font-size: 0.7rem !important;
    }
    .signature-title {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
    }
    
    .text-content.left-text-1 {
        padding: 0.2rem !important;
        margin-top: 0.1em !important;
        margin-bottom: 0.3em !important;
        padding-top: 0.3rem !important;
    }
}


/* SECTION 2 */

/* gauche */

.menu-description {
    grid-row: 1 / 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #000000;
    padding: 2.5rem;
    padding-top: 3rem;
    text-align: center;
}

.menu-link.thematique {
    grid-row: 6 / 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.menu-link.thematique img {
    width: 121%;
    height: 120%;
    object-position: center;
    margin-left: -10%;
    margin-top: -5%;
}

.menu-title {
    font-family: 'Tallica', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
}

.menu-text {
    font-family: 'Sintony', sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    color: #ffffff;
    max-width: 90%;
    margin: 0 auto;
}

.menu-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.menu-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 120%;
    padding: 1.5rem 6rem;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.3s ease;
}


.overlay-text h3 {
    font-family: 'Tallica', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.3rem;
}

.overlay-text p{
    font-family: "Sintony", sans-serif;
}



.menu-overlay:hover .overlay-text {
    background: rgba(0, 0, 0, 0.845);
}

/* droite */

.menu-link.degustation {
    grid-row: 1 / 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.menu-link.veggie {
    grid-row: 6 / 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .menu-title {
        font-size: 4rem;
    }
    .menu-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .menu-title {
        font-size: 3rem;
    }
    .menu-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 430px) {
    .menu-title {
        font-size: 2rem;
    }
    .menu-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 380px) {
    .menu-title {
        font-size: 1.9rem!important;
    }
    .menu-text {
        font-size: 0.9rem!important;
    }
    .overlay-text h3{
        font-size: 1.2rem!important;
    }
    .overlay-text p{
        font-size: 0.8rem!important;
    }
}

@media (max-width: 768px) {
    .menu-title {
        font-size: 3rem;
        line-height: 1.8;
    }
    .menu-text {
        font-size: 1rem;
    }
}

/* SECTION 3 */

.prestation-description {
    grid-row: 6 / 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    text-align: center;
}

.prestations-title {
    font-family: 'Tallica', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
}

.prestations-text {
    font-family: 'Sintony', sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    color: #ffffff;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.prestation-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.prestation-card.domicile {
    grid-row: 6 / 11;
}

.prestation-card.atelier {
    grid-row: 1 / 6;
}

.prestation-card.evenements {
    grid-row: 1 / 6;
}

.prestation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.258);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 1;
    transition: scale 0.3s ease;
}

.card-content h3 {
    font-family: 'Tallica', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.card-content p {
    font-family: 'Sintony', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
}

.menu-link.atelier{
    grid-row: 1 / 6;
}

.menu-link.evenements{
    grid-row: 1 / 6;
}

.menu-link.domicile{
    grid-row: 6 / 11;
}



/* Media Queries */
@media (max-width: 1024px) {
    .prestations-title {
        font-size: 3.5rem;
    }
    
    .card-content h3 {
        font-size: 1.8rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }


}

@media (max-width: 768px) {
    .prestations-title {
        font-size: 2.5rem;
    }
    
    .prestations-text {
        font-size: 1rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 430px) {
    .prestations-title {
        font-size: 2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .overlay-text p {
        font-size: 0.8rem;
    }
}

/* SECTION 4 */

.image-avantages {
    grid-row: 1 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1%;
}

.image-avantages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avantages {
    grid-row: 6 / 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    text-align: center;
}

.avantages h2 {
    font-family: 'Tallica', sans-serif;
    font-size: 2rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
    margin-top: 2rem;
}

.avantages h4 {
    font-family: 'Sintony', sans-serif;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1rem;

}

.avantages ul {
    list-style: none;
    padding: 0;
    margin: auto 2rem;
}

.avantages li h3 {
    font-family: 'Tallica', sans-serif;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.3rem;
}

.avantages li p {
    font-family: 'Sintony', sans-serif;
    font-size: 0.8rem;
    color: #000000;
    margin-bottom: 1rem;
}

/* droite */

.savoir-faire{
    grid-row: 1 / 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    text-align: center;
}

.savoir-faire-title {
    font-family: 'Tallica', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
    flex-shrink: 0;
}

.savoir-faire-text {
    font-family: 'Sintony', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.savoir-faire-list h3 {
    font-family: 'Tallica', sans-serif;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.3rem;
}

.savoir-faire-list p {
    font-family: 'Sintony', sans-serif;
    font-size: 0.8rem;
    color: #000000;
    margin-bottom: 1rem;
}

.image-savoir-faire {
    grid-row: 6 / 11;       
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110%;
}

.image-savoir-faire img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .avantages h2 {
        font-size: 2.5rem;
    }       
    .avantages li h3 {
        font-size: 1.8rem;
    }
    .avantages li p {
        font-size: 1.2rem;
    }
    .savoir-faire-title {
        font-size: 1.8rem;
    }
    .savoir-faire-text {
        font-size: 0.9rem;
    }
    .savoir-faire-list h3 {
        font-size: 1.5rem;
    }
    .savoir-faire-list p {
        font-size: 1rem;
        padding: 0rem 2rem;
    }
}

@media (max-width: 768px) {
    .avantages h2 {
        font-size: 2rem;
    }
    .avantages li h3 {
        font-size: 1.5rem;
    }
    .avantages li p {
        font-size: 1rem;
    }
    .savoir-faire-title {
        font-size: 1.5rem;
    }
    .savoir-faire-text {
        font-size: 0.8rem;
    }
    .savoir-faire-list h3 {
        font-size: 1.1rem;
    }
    .savoir-faire-list p {
        font-size: 1rem;
        padding: 0rem 2rem;
    }
}

@media (max-width: 431px) {
    .avantages h2 {
        font-size: 1.3rem;
        line-height: 1.7;
        margin-bottom: 0.5rem;
        margin-top: 2rem;
    }
    .avantages li h3 {
        font-size: 1.1rem;
        margin-bottom: 0rem;
    }
    .avantages li p {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    .savoir-faire-title {
        font-size: 1.1rem;
    }
    .savoir-faire-text {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding: 0rem 2rem;
    }
    .savoir-faire-list h3 {
        font-size: 1rem;
    }
    .savoir-faire-list p {
        font-size: 0.7rem;
    }
}

@media (max-width: 375px) {
    .avantages h2 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    .avantages li h3 {
        font-size: 1rem;
    }
    .avantages li p {
        font-size: 0.7rem;
    }
    .savoir-faire-title {
        font-size: 1.2rem;
    }
    .savoir-faire-text {
        font-size: 0.7rem;
    }
    .savoir-faire-list h3 {
        font-size: 0.8rem;
        margin-bottom: 0rem;
    }
    .savoir-faire-list p {
        font-size: 0.7rem;
        margin-bottom: 0rem;
    }
}

/* SECTION 5 */

/* SECTION 6 */

/* SECTION CONTACT */
.contact-info {
    grid-row: 1 / 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.contact-title {
    font-family: 'Tallica', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.contact-text {
    font-family: 'Sintony', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 3rem;
    max-width: 80%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: var(--color-orange);
    width: 24px;
    height: 24px;
}

.contact-item p {
    font-family: 'Sintony', sans-serif;
    font-size: 1rem;
    color: #ffffff;
}

.social-links {
    grid-row: 8 / 11;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.social-link {
    color: var(--color-orange);
    transition: all 0.3s ease;
}

.social-link i {
    width: 30px;
    height: 30px;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Formulaire de contact */
.contact-form {
    grid-row: 3 / 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 400px;
    margin: 0 auto;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(var(--color-orange-rgb), 0.5);
    outline: none;
    font-family: 'Sintony', sans-serif;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Sintony', sans-serif;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--color-orange);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-orange);
}

.submit-btn {
    background: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    padding: 1rem 2rem;
    font-family: 'Tallica', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: var(--color-orange);
    color: #000000;
}

/* Media Queries pour le contact */
@media (max-width: 1024px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-form {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .contact-item i {
        width: 20px;
        height: 20px;
    }

    .social-link i {
        width: 25px;
        height: 25px;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Ajustements spécifiques pour les sections */

/* Navigation coins - Nouvelle version */
.corner-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.nav-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: auto;
    cursor: pointer;
}

.corner-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Styles des icônes */
.nav-icon-home,
.nav-icon-boutique,
.nav-icon-prestations,
.nav-icon-contact {
    color: #fff !important;
    stroke: #fff !important;
}

.nav-text {
    position: absolute;
    color: white;
    font-family: 'Tallica', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    left: 50px;
}

/* Positions des coins */
.top-left {
    top: 20px;
    left: 20px;
    z-index: 102;
}

.top-right {
    top: 80px;
    left: 20px;
    z-index: 101;
}

.bottom-left {
    top: 140px;
    left: 20px;
    z-index: 102;
}

.bottom-right {
    top: 200px;
    left: 20px;
    z-index: 101;
}

/* Animation au hover */
.nav-corner:hover .corner-circle {
    width: 180px;
    height: 40px;
    border-radius: 25px;
}

/* Affichage du texte au hover */
.nav-corner:hover .nav-text {
    opacity: 1;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-corner {
        width: 45px;
        height: 45px;
    }

    .nav-icon-home,
    .nav-icon-boutique,
    .nav-icon-prestations,
    .nav-icon-contact {
        width: 25px !important;
        height: 25px !important;
    }

    .nav-corner:hover .corner-circle {
        width: 160px;
        height: 45px;
    }

    .nav-text {
        left: 50px;
    }
}

@media (max-width: 480px) {
    .nav-corner {
        width: 40px;
        height: 40px;
    }

    .nav-icon-home,
    .nav-icon-boutique,
    .nav-icon-prestations,
    .nav-icon-contact {
        width: 20px !important;
        height: 20px !important;
    }

    .nav-corner:hover .corner-circle {
        width: 140px;
        height: 40px;
    }

    .nav-text {
        left: 45px;
    }
}

/* Styles pour le logo central */
.logo-container {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 400px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-logo-left {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .logo-container {
        left: 70%!important;
        top: 5%;
        width: 200px;
        height: 80px;
        z-index: 101;
    }
    .logo-container img {
        margin-left: -200px;
        width: 100%;
        height: 80%;
        object-fit: cover;
        object-position: 0% 50%;
    }
}

.logo-container-right {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 400px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.background-image {
    position: absolute;
    width: 70%;
    height: 100%;
    object-position: 0% 20%;
    object-fit: cover;

}

/* Style pour l'indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Sintony', sans-serif;
    font-size: 0.8rem;
    color: var(--color-orange);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    opacity: 0.8;
    display: none; /* Caché par défaut */
}

/* Afficher uniquement sur la première section */
.left-section-1 .scroll-indicator {
    display: block;
}

@media (max-width: 1024px) {
    .scroll-indicator {
        bottom: -15px;
        left: -100px;
    }
}

/* Ajustement du bouton down pour l'indicateur */

/* Style pour le bouton voir plus */
.voir-plus-btn {
    text-decoration: none;
    background-color: var(--color-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Sintony', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0;
}

.voir-plus-btn:hover {
    background-color: white;
    color: var(--color-orange);
}

@media (max-width: 1024px) {
    .voir-plus-btn {
        opacity: 1; /* Visible sur mobile et tablette */
    }
    
    .menu-description .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Styles pour la section blog */
.blog-section {
    padding: 60px 40px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Grille d'articles pour Desktop */
.latest-articles-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
    max-width: 1200px !important;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff6f00;
    margin: 15px auto 0;
}

/* Styles pour le slider d'articles */
.blog-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin-bottom: 2rem;
}

.blog-article {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-article.active {
    opacity: 1;
    transform: translateX(0);
}

.article-content {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 600px;
    width: 100%;
}

.article-image {
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-content:hover .article-image img {
    transform: scale(1.05);
}

.article-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-category {
    display: inline-block;
    background-color: #ff6f00;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.article-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.article-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more-btn {
    align-self: flex-start;
    background-color: transparent;
    border: 2px solid #ff6f00;
    color: #ff6f00;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more-btn:hover {
    background-color: #ff6f00;
    color: #fff;
}

.read-more-btn:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover:after {
    transform: translateX(5px);
}

/* Navigation du blog */
.blog-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-arrow {
    background: transparent;
    border: 2px solid #ff6f00;
    color: #ff6f00;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-arrow:hover {
    background: #ff6f00;
    color: white;
    transform: scale(1.1);
}

.blog-arrow i {
    width: 24px;
    height: 24px;
}

.blog-dots {
    display: flex;
    gap: 0.5rem;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-dot.active {
    background: #ff6f00;
    transform: scale(1.2);
}

.voir-plus-btn-blog {
    display: block;
    margin: 20px auto 0;
    background-color: #ff6f00;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.2);
    transition: all 0.3s ease;
}

.voir-plus-btn-blog:hover {
    background-color: #e56200;
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
    transform: translateY(-3px);
}

/* Styles pour la sidebar avec les articles */
.sidebar-article {
    display: flex;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-article:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.sidebar-article-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-article-content {
    flex: 1;
}

.sidebar-article-category {
    display: inline-block;
    background-color: #ff6f00;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.sidebar-article-title {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.mobile-menu-toggle i {
    color: var(--color-orange);
    font-size: 28px;
}

.mobile-menu-toggle svg {
    stroke: var(--color-orange) !important;
    width: 28px;
    height: 28px;
}

.mobile-menu-toggle path {
    stroke: var(--color-orange) !important;
}

/* Cacher complètement le menu hamburger quand il est caché */
.mobile-menu-toggle.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;  /* Ajout de visibility pour vraiment le cacher */
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);  /* Fond noir */
    z-index: 9998;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    text-align: right;
}

.close-menu {
    color: var(--color-orange);  /* Croix orange */
    font-size: 28px;
    cursor: pointer;
    padding: 12px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: center;
}

.mobile-nav a {
    color: white;  /* Texte blanc */
    text-decoration: none;
    padding: 20px 0;
    font-family: 'Sintony', sans-serif;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);  /* Bordure plus subtile */
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--color-orange);  /* Texte orange au hover */
    background: rgba(255, 255, 255, 0.05);  /* Fond légèrement plus clair au hover */
}

@media (max-width: 1024px) {
    .corner-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
}

/* Style pour la section blog hero */
.blog-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.191), rgba(0, 0, 0, 0.655));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.blog-overlay h2 {
    font-family: 'Tallica', sans-serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.blog-overlay p {
    font-family: 'Sintony', sans-serif;
    font-size: 1.2rem;
    color: var(--color-orange);
    max-width: 600px;
}

@media (max-width: 1024px) {
    .blog-overlay h2 {
        font-size: 2rem;
    }

    .blog-overlay p {
        font-size: 1rem;
    }
}

.nav-icon-contact:hover,
.nav-icon-boutique:hover,
.nav-icon-prestations:hover,
.nav-icon-home:hover {
    color: var(--color-orange);
}



.latest-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.latest-article {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.latest-article:hover {
    transform: translateY(-5px);
}

.latest-article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.latest-article-content {
    padding: 1rem;
}

.latest-article h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.latest-article p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .latest-articles {
        grid-template-columns: 1fr;
    }
}

/* Style pour la catégorie d'article */
.article-category {
    display: inline-block;
    background: var(--color-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: 'Sintony', sans-serif;
}

/* Ajuster le conteneur de l'article */
.latest-article-content {
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

/* Ajuster l'espacement après la catégorie */
.latest-article h3 {
    margin-top: 0.5rem;
}

/* Style pour la date */
.article-date {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: var(--color-orange);
}

/* Hover effect sur la catégorie */
.latest-article:hover .article-category {
    background: white;
    color: var(--color-orange);
}

/* Media queries */
@media (max-width: 768px) {
    .article-category {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Styles pour les boutons CTA */
.cta-buttons-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background: var(--color-orange);
    color: #000000;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Sintony', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-orange);
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    background: transparent;
    color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 191, 4, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Responsive pour les boutons CTA */
@media (max-width: 768px) {
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 0.8rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
}

/* Styles pour les éléments de navigation CTA */
.cta-nav {
    position: relative;
    width: auto;
    height: auto;
    pointer-events: auto;
    cursor: pointer;
}

.cta-nav .corner-circle {
    position: relative;
    width: auto;
    height: 40px;
    background: var(--color-orange);
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.cta-nav .corner-circle i {
    width: 20px !important;
    height: 20px !important;
    color: #ffffff;
    stroke-width: 1.5px;
    margin-right: 10px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-nav .nav-text {
    position: relative;
    color: white;
    font-family: 'Tallica', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 1;
    pointer-events: none;
    transition: all 0.5s ease;
    left: 0;
}

/* Effet de survol */
.cta-nav:hover .corner-circle {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 191, 4, 0.3);
}

.cta-nav:hover .corner-circle i {
    color: var(--color-orange);
}

.cta-nav:hover .nav-text {
    color: var(--color-orange);
}

/* Responsive pour les éléments CTA */
@media (max-width: 768px) {
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-nav .corner-circle {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0 15px;
    }
    
    .cta-nav .nav-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cta-nav .corner-circle {
        height: 35px;
        padding: 0 12px;
    }
    
    .cta-nav .corner-circle i {
        width: 18px !important;
        height: 18px !important;
        margin-right: 8px;
    }
    
    .cta-nav .nav-text {
        font-size: 0.7rem;
    }
}

/* Styles pour la section témoignages */
.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 150%;
    padding: 2rem;
    text-align: center;
}

.testimonials-title {
    font-family: 'Tallica', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin-bottom: 2rem;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-stars .star {
    color: #FFD700;
    font-size: 24px;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Sintony', sans-serif;
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-author strong {
    font-family: 'Tallica', sans-serif;
    color: var(--color-orange);
    font-size: 1.2rem;
}

.testimonial-author span {
    font-family: 'Sintony', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-arrow {
    background: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: var(--color-orange);
    color: white;
    transform: scale(1.1);
}

.testimonial-arrow i {
    width: 24px;
    height: 24px;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-orange);
    transform: scale(1.2);
}

/* Responsive pour les témoignages */
@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials-slider {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 1rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-slider {
        height: 200px;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-stars i {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
}

/* Styles pour la section saumon */
.salmon-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    padding-top: 3rem;
    padding-bottom: 0;
    position: relative;
}

.salmon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding-bottom: 120px; /* Espace pour le bouton */
}

.salmon-title {
    font-family: 'Tallica', sans-serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
    flex-shrink: 0;
}

.salmon-text {
    font-family: 'Sintony', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.salmon-features {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.salmon-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.salmon-list li {
    font-family: 'Sintony', sans-serif;
    font-size: 0.8rem;
    color: #000;
    line-height: 1.4;
}

.salmon-list strong {
    color: var(--color-orange);
}

.salmon-image-container {
    margin: 1rem 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    flex-shrink: 0;
    margin-top: -5rem;
}

.salmon-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.buy-salmon-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--color-orange);
    color: #000000;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Tallica', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-orange);
    flex-shrink: 0;
    min-width: 500px;
    text-align: center;
}

.buy-salmon-btn:hover {
    background: transparent;
    color: var(--color-orange);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 191, 4, 0.3);
}

/* Responsive pour la section saumon */
@media (max-width: 1024px) {
    .salmon-title {
        font-size: 2.5rem;
    }
    
    .salmon-text {
        font-size: 1rem;
    }
    
    .salmon-list li {
        font-size: 0.9rem;
    }
    
    .buy-salmon-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .salmon-image-container {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .salmon-container {
        padding: 1.5rem;
    }
    
    .salmon-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .salmon-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .salmon-list {
        gap: 0.8rem;
    }
    
    .salmon-list li {
        font-size: 0.8rem;
    }
    
    .buy-salmon-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        min-width: 300px;
    }
    
    .salmon-image-container {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .salmon-container {
        padding: 1rem !important;
    }
    
    .salmon-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .salmon-text {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .salmon-list {
        gap: 0.6rem !important;
    }
    
    .salmon-list li {
        font-size: 0.7rem !important;
    }
    
    .buy-salmon-btn {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        min-width: 250px !important;
    }
    
    .salmon-image-container {
        width: 100% !important;
        height: 200px !important;
    }
    
    .foie-gras-container {
        padding: 1rem !important;
    }
    
    .foie-gras-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .foie-gras-text {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .foie-gras-list {
        gap: 0.6rem !important;
    }
    
    .foie-gras-list li {
        font-size: 0.7rem !important;
    }
    
    .buy-foie-gras-btn {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        min-width: 250px !important;
    }
    
    .foie-gras-image-container {
        width: 100% !important;
        height: 200px !important;
    }
}

/* Styles pour la section foie gras */
.foie-gras-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    padding-top: 3rem;
    position: relative;
}

.foie-gras-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding-bottom: 120px; /* Espace pour le bouton */
}

.foie-gras-title {
    font-family: 'Tallica', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    word-spacing: 0.5rem;
    flex-shrink: 0;
}

.foie-gras-text {
    font-family: 'Sintony', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.foie-gras-features {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.foie-gras-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.foie-gras-list li {
    font-family: 'Sintony', sans-serif;
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.4;
}

.foie-gras-list strong {
    color: var(--color-orange);
}

.foie-gras-image-container {
    margin: 1rem 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    flex-shrink: 0;
}

.foie-gras-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.buy-foie-gras-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--color-orange);
    color: #000000;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Tallica', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-orange);
    flex-shrink: 0;
    min-width: 500px;
    text-align: center;
}

.buy-foie-gras-btn:hover {
    background: transparent;
    color: var(--color-orange);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 191, 4, 0.3);
}

/* Responsive pour la section foie gras */
@media (max-width: 1024px) {
    .foie-gras-title {
        font-size: 2.5rem;
    }
    
    .foie-gras-text {
        font-size: 1rem;
    }
    
    .foie-gras-list li {
        font-size: 0.9rem;
    }
    
    .buy-foie-gras-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .foie-gras-image-container {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .foie-gras-container {
        padding: 1.5rem;
    }
    
    .foie-gras-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .foie-gras-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .foie-gras-list {
        gap: 0.8rem;
    }
    
    .foie-gras-list li {
        font-size: 0.8rem;
    }
    
    .buy-foie-gras-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        min-width: 300px;
    }
    
    .foie-gras-image-container {
        width: 100%;
        height: 250px;
    }
}

.nav-icon-boutique {
    color: #fff !important;
    stroke: #fff !important;
}

/* Responsive pour la section 2 droite */
@media (max-width: 1024px) {
    .image-content.right-image-1 {
        grid-row: 1 / 4;
        height: 100%;
    }
    
    .text-content.right-text-1 {
        grid-row: 4 / 11;
        padding: 1.5rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .signature-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .signature-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons-container {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .image-content.right-image-1 {
        grid-row: 1 / 4;
        height: 100%;
    }
    
    .text-content.right-text-1 {
        grid-row: 4 / 11;
        padding: 1rem;
        justify-content: flex-start;
        padding-top: 1.5rem;
    }
    
    .signature-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .signature-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .cta-buttons-container {
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-button {
        font-size: 0.8rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .image-content.right-image-1 {
        grid-row: 1 / 2.5;
        height: 100%;
    }
    
    .text-content.right-text-1 {
        grid-row: 2.5 / 11;
        padding: 0.8rem;
        justify-content: flex-start;
        padding-top: 1rem;
    }
    
    .signature-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .signature-text {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-buttons-container {
        margin-top: 0.8rem;
        gap: 0.6rem;
    }
    
    .cta-button {
        font-size: 0.7rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .presentation-text {
        font-size: 0.9rem !important;
    }
    
    .presentation-title {
        font-size: 1.2rem !important;
    }
    
    .presentation-title-h2 {
        font-size: 1rem !important;
    }
    
    .presentation-title-h3 {
        font-size: 0.9rem !important;
    }
    
    .presentation-list {
        font-size: 0.8rem !important;
    }
    
    .signature-text {
        font-size: 0.8rem !important;
    }
    
    .signature-title {
        font-size: 1.1rem !important;
    }
    
    .top-logo {
        width: 200px !important;
        height: 70px !important;
        margin: 0.2rem auto 0.5rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    .navigation {
        bottom: 1rem !important;
    }
    
    .nav-button {
        width: 40px !important;
        height: 40px !important;
    }
    
    .nav-button svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .image-content.left-image-1 {
        grid-row: 8 / 11 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        overflow: hidden !important;
        margin-top: -1% !important;
    }
    
    .image-content img {
        width: 100% !important;
        height: 120% !important;
        object-fit: cover !important;
    }
    
    .text-content.left-text-1 {
        grid-row: 1 / 7 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 1rem !important;
        background-color: #000000 !important;
        margin-top: 1em !important;
        margin-bottom: 2em !important;
    }
    
    .top-logo {
        width: 200px !important;
        height: 70px !important;
        margin: 0.2rem auto 0.5rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
}

/* Styles spécifiques pour iPhone SE (375px) - à la fin pour priorité */
@media (max-width: 375px) {
    .presentation-text {
        font-size: 0.6rem !important;
    }

    .presentation-title {
        font-size: 0.8rem !important;
    }
    
    .presentation-title-h2 {
        font-size: 0.7rem !important;
    }
    
    .presentation-title-h3 {
        font-size: 0.6rem !important;
    }

    .presentation-list {
        font-size: 0.7rem !important;
    }

    .signature-text {
        font-size: 0.7rem !important;
    }
    
    .signature-title {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
    }
    
    .text-content.left-text-1 {
        padding: 0.6rem !important;
        margin-top: 0.3em !important;
        margin-bottom: 0.8em !important;
    }
    
    .top-logo {
        width: 150px !important;
        height: 120px !important;
    }
}

/* Styles ultra-spécifiques pour mobile - priorité maximale */
@media (max-width: 768px) {
    .section .grid-container .text-content.left-text-1 {
        grid-row: 1 / 8 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0.2rem !important;
        background-color: #000000 !important;
        margin-top: 2em !important;
        margin-bottom: 0.3em !important;
        padding-top: 2rem !important;
    }
    
    .section .grid-container .image-content.left-image-1 {
        grid-row: 8 / 11 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        overflow: hidden !important;
        margin-top: -1% !important;
    }
    
    .section .grid-container .top-logo {
        width: 200px !important;
        height: 70px !important;
        margin: 1rem auto 0.2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    /* Section de droite */
    .section .grid-container .text-content.right-text-1 {
        grid-row: 4 / 11 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0.2rem !important;
        background-color: #ffffff !important;
        color: #000000 !important;
        margin-top: 2em !important;
        margin-bottom: 0.3em !important;
        padding-top: 2rem !important;
    }
    
    .section .grid-container .image-content.right-image-1 {
        grid-row: 1 / 4 !important;
        height: 100% !important;
    }
    
    /* Tailles de police pour la section de droite */
    .section .grid-container .text-content.right-text-1 .signature-title {
        font-size: 1.1rem !important;
    }
    
    .section .grid-container .text-content.right-text-1 .signature-text {
        font-size: 0.8rem !important;
    }
    
    .section .grid-container .text-content.right-text-1 .cta-button {
        font-size: 0.8rem !important;
        padding: 0.8rem 1.5rem !important;
    }
    
    /* Section saumon */
    .salmon-container {
        padding: 0.2rem !important;
        padding-top: 2rem !important;
        margin-top: 2em !important;
    }
    
    .salmon-title {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .salmon-text {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .salmon-list li {
        font-size: 0.8rem !important;
    }
    
    .buy-salmon-btn {
        font-size: 0.9rem !important;
        padding: 8px 16px !important;
    }
    
    .salmon-image-container {
        margin-top: 1rem !important;
    }
}

@media (max-width: 375px) {
    .section .grid-container .text-content.left-text-1 {
        padding: 0.1rem !important;
        margin-top: 1.5em !important;
        margin-bottom: 0.1em !important;
        padding-top: 1.5rem !important;
    }
    
    /* Section de droite */
    .section .grid-container .text-content.right-text-1 {
        padding: 0.1rem !important;
        margin-top: 1.5em !important;
        margin-bottom: 0.1em !important;
        padding-top: 1.5rem !important;
    }
    
    /* Tailles de police pour iPhone SE */
    .section .grid-container .text-content.right-text-1 .signature-title {
        font-size: 1rem !important;
    }
    
    .section .grid-container .text-content.right-text-1 .signature-text {
        font-size: 0.7rem !important;
    }
    
    .section .grid-container .text-content.right-text-1 .cta-button {
        font-size: 0.7rem !important;
        padding: 0.6rem 1.2rem !important;
    }
    
    /* Section saumon pour iPhone SE */
    .salmon-container {
        padding: 0.1rem !important;
        padding-top: 1.5rem !important;
        margin-top: 1.5em !important;
    }
    
    .salmon-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .salmon-text {
        font-size: 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .salmon-list li {
        font-size: 0.7rem !important;
    }
    
    .buy-salmon-btn {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
    }
    
    .salmon-image-container {
        margin-top: 0.8rem !important;
    }
}

/* Styles spécifiques pour 480px - priorité maximale */
@media (max-width: 480px) {
    .salmon-container {
        padding: 1rem !important;
        margin-top: 3em !important;
        padding-top: 3rem !important;
    }
    
    .salmon-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .salmon-text {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .salmon-list {
        gap: 0.6rem !important;
    }
    
    .salmon-list li {
        font-size: 0.7rem !important;
    }
    
    .buy-salmon-btn {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        min-width: 250px !important;
        bottom: 4rem !important;
    }
    
    .salmon-image-container {
        width: 100% !important;
        height: 200px !important;
    }
    
    .foie-gras-container {
        padding: 1rem !important;
        margin-top: 3em !important;
        padding-top: 3rem !important;
    }
    
    .foie-gras-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .foie-gras-text {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .foie-gras-list {
        gap: 0.6rem !important;
    }
    
    .foie-gras-list li {
        font-size: 0.7rem !important;
    }
    
    .buy-foie-gras-btn {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        min-width: 250px !important;
        bottom: 4rem !important;
    }
    
    .foie-gras-image-container {
        width: 100% !important;
        height: 200px !important;
    }
}

.salmon-image-container {
    margin-top: 1rem !important;
}

/* Section blog */
.blog-section {
    padding: 2rem 1rem !important;
}

.section-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
}

.latest-articles-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
}

.article-card {
    margin-bottom: 1rem !important;
}

.article-title {
    font-size: 1.2rem !important;
}

.article-excerpt {
    font-size: 0.9rem !important;
}

.read-more-btn {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
}

.voir-plus-btn-blog {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
}

/* Section témoignages */
.testimonials-container {
    padding: 1rem !important;
}

.testimonials-title {
    font-size: 1.8rem !important;
    margin-bottom: 2rem !important;
}

.testimonials-slider {
    height: 250px !important;
}

.testimonial-content {
    padding: 1.5rem !important;
}

.testimonial-text {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
}

.testimonial-author strong {
    font-size: 1rem !important;
}

.testimonial-author span {
    font-size: 0.8rem !important;
}

.testimonial-arrow {
    width: 40px !important;
    height: 40px !important;
}

.testimonial-arrow i {
    width: 20px !important;
    height: 20px !important;
}

.salmon-image-container {
    margin-top: 0.8rem !important;
}

/* Section blog pour iPhone SE */
.blog-section {
    padding: 1rem 0.5rem !important;
}

.section-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.article-title {
    font-size: 1rem !important;
}

.article-excerpt {
    font-size: 0.8rem !important;
}

.read-more-btn {
    font-size: 0.7rem !important;
    padding: 5px 10px !important;
}

.voir-plus-btn-blog {
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
}

/* Section témoignages pour iPhone SE */
.testimonials-container {
    padding: 0.8rem !important;
}

.testimonials-title {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.testimonials-slider {
    height: 200px !important;
}

.testimonial-content {
    padding: 1rem !important;
}

.testimonial-text {
    font-size: 0.8rem !important;
    margin-bottom: 0.8rem !important;
}

.testimonial-author strong {
    font-size: 0.9rem !important;
}

.testimonial-author span {
    font-size: 0.7rem !important;
}

.testimonial-arrow {
    width: 35px !important;
    height: 35px !important;
}

.testimonial-arrow i {
    width: 18px !important;
    height: 18px !important;
}

/* Section blog */
.blog-section {
    padding: 2rem 1rem !important;
}

.section-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
}

.blog-slider {
    height: 400px !important;
    margin-bottom: 1rem !important;
}

.article-content {
    max-width: 350px !important;
}

.article-image {
    height: 160px !important;
}

.article-details {
    padding: 1.5rem !important;
}

.article-title {
    font-size: 1.2rem !important;
}

.article-excerpt {
    font-size: 0.9rem !important;
}

.read-more-btn {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
}

.blog-nav {
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.blog-arrow {
    width: 40px !important;
    height: 40px !important;
}

.blog-arrow i {
    width: 20px !important;
    height: 20px !important;
}

.voir-plus-btn-blog {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
}

/* Styles pour iPhone SE - Slider blog */
@media (max-width: 375px) {
    .blog-slider {
        height: 350px !important;
        margin-bottom: 1rem !important;
    }
    
    .article-content {
        max-width: 350px !important;
    }
    
    .article-image {
        height: 120px !important;
    }
    
    .article-details {
        padding: 1rem !important;
    }
    
    .article-title {
        font-size: 1rem !important;
    }
    
    .article-excerpt {
        font-size: 0.8rem !important;
    }
    
    .read-more-btn {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }
    
    .blog-nav {
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .blog-arrow {
        width: 35px !important;
        height: 35px !important;
    }
    
    .blog-arrow i {
        width: 18px !important;
        height: 18px !important;
    }
    
    .voir-plus-btn-blog {
        font-size: 0.8rem !important;
        padding: 8px 16px !important;
    }
}

/* Affichage conditionnel Desktop/Mobile */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Media queries pour l'affichage conditionnel */
@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .blog-nav.mobile-only {
        display: flex !important;
    }
}

/* Styles pour les cartes d'articles */
.latest-articles-grid .article-card {
    background: #ffffff !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 400px !important;
}

.latest-articles-grid .article-card:hover {
    transform: translateY(-5px) !important;
}

.latest-articles-grid .article-card .article-image {
    height: 200px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.latest-articles-grid .article-card .article-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.latest-articles-grid .article-card:hover .article-image img {
    transform: scale(1.05) !important;
}

.latest-articles-grid .article-card .article-content {
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    background: #ffffff !important;
}

.latest-articles-grid .article-card .article-category {
    display: inline-block !important;
    background-color: var(--color-orange) !important;
    color: #000000 !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    align-self: flex-start !important;
}

.latest-articles-grid .article-card .article-title {
    font-size: 1.4rem !important;
    color: #333333 !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

.latest-articles-grid .article-card .article-excerpt {
    color: #666666 !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    flex-grow: 1 !important;
}

.latest-articles-grid .article-card .read-more-btn {
    align-self: flex-start !important;
    background-color: transparent !important;
    border: 2px solid var(--color-orange) !important;
    color: var(--color-orange) !important;
    padding: 8px 15px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
}

.latest-articles-grid .article-card .read-more-btn:hover {
    background-color: var(--color-orange) !important;
    color: #000000 !important;
}

.latest-articles-grid .article-card .read-more-btn:after {
    content: '→' !important;
    margin-left: 5px !important;
    transition: transform 0.3s ease !important;
}

.latest-articles-grid .article-card .read-more-btn:hover:after {
    transform: translateX(5px) !important;
}

