/* Styles pour le header */


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

body {
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  position: relative;
  background: #fff;
  overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
    font-family: 'Montserrat', sans-serif;
}

body::before {
    background: #4caf5012;
    top: 200px;
    left: -400px;
    z-index: 3;
}

body::after {
    background:#ae425385;
    bottom: -400px;
    right: -400px;
    z-index: 3;
}

@media (max-width: 768px) {
    body::before {
        opacity: 0.05;
    }
    
    body::after {
        opacity: 0.05;
    }
    
}


.logo-container img {
    max-height: 80px;
    width: auto;
}


/****************** Variables ***************** */
:root {
  --primary-color: #7ac39d;
  --secondary-color:#ae4253;
  --tertiary-color: #d4af37;
  --thrid-color: #ce2b37;
  --accent-color: #D9D9D9;
  --background-color: #FFFFFF;
  --text-color: #000000;
  --header-height: 80px;
  --main-font-color: #3c4857;
  --main-title-color: #000;
  --main-bg-color: #09111f;
  --footercolor: #09111f;
  --color-fonce: #000;
  --color-clair: #fff;
  --color-gris: #f1f1f1;
  --color-font: #202020;
  --anim-entree-color:#09111f;
}

/* Définition de la police par défaut */
*, *::before, *::after {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Typographie */
h1, .h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2, .h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

h3, .h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4, .h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

h5, .h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

h6, .h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Styles responsifs pour la typographie */
@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2rem;
    }

    h2, .h2 {
        font-size: 1.75rem;
    }

    h3, .h3 {
        font-size: 1.5rem;
    }

    h4, .h4 {
        font-size: 1.25rem;
    }

    h5, .h5 {
        font-size: 1.1rem;
    }

    h6, .h6 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/****************** Header styles ***************** */

.header {
    background-color: #FFF;
    padding:0px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

.menu {
    margin: 0 auto;
    position: initial;
    width: 90%;
    z-index: 800;
    display: grid;
    grid-template-columns: 30% 70%;
    align-content: center;
    align-items: center;  
    max-width: 1200px;
    justify-content: space-between;
    justify-items: stretch;
    color: var(--color-fonce);
}

.nav-container ul {
    display: flex;
    gap: 3rem;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logo-container {
    padding: 0 0rem;
}

.logo-container img {
    height: 70px;
    width: auto;
}


#boutonContactez-nous {
    background-color: var(--secondary-color);
    border: 2px solid var(--main-color);
    color: var(--color-clair);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#boutonContactez-nous:hover {
    background-color: var(--tertiary-color);
    color: #FFF;
}

#boutonContactez-nous::after {
    display: none;
}

@media (max-width: 990px) {
    .menu {
        padding: 1rem 5%;
    }

    .nav-container ul {
        gap: 1.5rem;
    }

    .logo-container img {
        height: 55px;
    }

    .nav-container a {
        font-size: 1rem;
    }
}

.menu div li {
    display: inline-block;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
}

.menu a {
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-fonce);
}

.fondbleu {
    background-color: var(--main-bg-color);
}

.fondbleu .menu {
    color: var(--color-clair);
}
  
#main {
    transition: margin-left .5s;
    padding: 16px;
 }


/****************** Hero Section ***************** */
.hero-section {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    background-color: #09111f;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.hero-slider-container {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.hero-item {
    flex: 0 0 25%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-item:hover {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.hero-content {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    z-index: 4;
    transform: translateY(1%);
    transition: transform 0.3s ease;
}

.hero-item:hover .hero-content {
    transform: translateY(0);
}

.hero-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.hero-item:hover .hero-description {
    opacity: 1;
    transform: translateY(0);
}

.hero-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #b38d4f;
}

.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
}

.slider-prev:disabled,
.slider-next:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.slider-prev svg,
.slider-next svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background-color: #c59d5f;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 992px) {
    .hero-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;  /* Ajout de cette ligne pour réduire la hauteur sur mobile */
    }
    .hero-item {
        flex: 0 0 100%;
    }
    .hero-content {
        transform: translateY(0);
    }
    .hero-description {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Styles */
.hero-slider-nav {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(5px);
    width: auto;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-prev svg,
.slider-next svg {
    fill: white;
    width: 24px;
    height: 24px;
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
    margin: 0 1rem;
}

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

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: white;
}

@media (max-width: 1200px) {
    .hero-item {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width: 768px) {

    .hero-item {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .hero-slider-nav {
        bottom: 1.5rem;
        padding: 0.8rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 36px;
        height: 36px;
    }

    .slider-prev svg,
    .slider-next svg {
        width: 20px;
        height: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-description p {
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}


/* Ajout des éléments décoratifs avec l'image de fond - uniquement pour header-accueil */
.has-decorative-bg .decorative-element {
    position: fixed;
    width: 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.has-decorative-bg .decorative-top {
    top: 0;
    right: 0;
    transform: rotate(180deg);
}

.has-decorative-bg .decorative-bottom {
    bottom: 0;
    left: 0;
}

/* Suppression des autres styles décoratifs */
.decorative-bg-top-right,
.decorative-bg-bottom-left,
.decorative-element {
    display: none;
}

/* Ajout d'un effet de fond sur certaines sections */
.section:nth-of-type(odd)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 300px;
    height: 300px;
    background-image: url('img/fond-tomates-cerises-mozza.png');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
    .section:nth-of-type(odd)::before {
        width: 150px;
        height: 150px;
        left: -75px;
    }
}

/* Éléments décoratifs */
.section-decorative {
    position: relative;
    overflow: hidden;
}

.decorative-element {
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: url('./img/fond-tomates-cerises-mozza.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.15;
}

.decorative-top-right {
    top: -100px;
    right: -100px;
    transform: rotate(180deg);
}

.decorative-bottom-left {
    bottom: -100px;
    left: -100px;
}

@media (max-width: 768px) {
    .decorative-element {
        width: 200px;
        height: 200px;
    }
    
    .decorative-top-right {
        top: -50px;
        right: -50px;
    }
    
    .decorative-bottom-left {
        bottom: -50px;
        left: -50px;
    }
}

/* S'assurer que le contenu reste au-dessus */
#desktop, 
.menu, 
main, 
section, 
footer {
    position: relative;
    z-index: 1;
}


/* Single Prestation */
.titleheadersinglepresta {
    width: 90%;
    text-align: center;
    padding: 10rem 2rem 1rem 2rem;
    margin: 0 auto;
}

.titleheadersinglepresta h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--main-title-color);
}

.titleheadersinglepresta .breadcrumb {
    font-size: 1rem;
    color: #666;
}

.titleheadersinglepresta .breadcrumb a {
    color: var(--main-title-color);
    text-decoration: none;
}

.titleheadersinglepresta .breadcrumb a:hover {
    text-decoration: underline;
}

.single-prestations .titleheadersinglepresta {
    text-align: center;
    margin: 4rem auto;
    max-width: 800px;
    position: relative;
}

.single-prestations .titleheadersinglepresta h1 {
    font-size: 3.5rem;
    color: var(--main-title-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.single-prestations .titleheadersinglepresta h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 2px;
}

.imgsinglepresta {
    max-width: 1400px;
    margin: 0rem auto;
    padding: 0 5%;
}

.image-gallery {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    position: relative;
    padding: 2rem 0;
}

.image-gallery::before {
    display: none;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.main-image {
    flex: 0 0 60%;
    height: 700px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.secondary-images {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 700px;
}

.secondary-images .gallery-item {
    flex: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.secondary-images .gallery-item:first-child,
.secondary-images .gallery-item:last-child {
    transform: none;
}

@media (max-width: 1200px) {
    .main-image {
        height: 600px;
    }

    .secondary-images {
        height: 600px;
    }
}

@media (max-width: 992px) {
    .image-gallery {
        flex-direction: column;
        padding: 0;
    }

    .main-image {
        width: 100%;
        height: 450px;
    }

    .secondary-images {
        width: 100%;
        height: auto;
        flex-direction: row;
    }

    .secondary-images .gallery-item {
        height: 300px;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .imgsinglepresta {
        margin: 4rem auto;
    }

    .image-gallery {
        gap: 1.5rem;
    }

    .main-image {
        height: 400px;
    }

    .secondary-images {
        flex-direction: column;
    }

    .secondary-images .gallery-item {
        height: 250px;
    }
    .titleheadersinglepresta {
        width: 80%;
    }
}

.contentsinglepresta {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    position: relative;
}

.contentsinglepresta > div {
    position: relative;
    padding-left: 2rem;
}

.contentsinglepresta > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, var(--main-color), transparent);
    border-radius: 2px;
}

.contentsinglepresta h2 {
    color: var(--main-title-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.contentsinglepresta p {
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .contentsinglepresta {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin: 6rem auto;
    }

    .contentsinglepresta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contentsinglepresta {
        margin: 4rem auto;
        gap: 3rem;
    }

    .contentsinglepresta > div {
        padding-left: 1.5rem;
    }

    .contentsinglepresta > div::before {
        height: 80px;
    }

    .contentsinglepresta h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contentsinglepresta p {
        font-size: 1.1rem;
    }
}

/* Photo Gallery */
.titreblue {
    text-align: center;
    margin: 4rem auto;
    max-width: 800px;
}

.titreblue h1 {
    font-size: 3rem;
    color: var(--main-title-color);
    line-height: 1.2;
}

.titregalleryphoto {
    text-align: center;
    margin-bottom: 4rem;
}

.titregalleryphoto a {
    font-size: 1.2rem;
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.titregalleryphoto a:hover {
    color: var(--main-title-color);
}

.gridgalery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 5%;
    max-width: 1800px;
    margin: 0 auto;
}

.gridgalery > div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gridgalery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.gridgalery img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

@media (max-width: 1400px) {
    .gridgalery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .titreblue h1 {
        font-size: 2.5rem;
    }

    .gridgalery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gridgalery > div {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .titreblue {
        margin: 3rem auto;
    }

    .titreblue h1 {
        font-size: 2rem;
    }

    .titregalleryphoto {
        margin-bottom: 3rem;
    }

    .gridgalery {
        grid-template-columns: 1fr;
    }

    .gridgalery img {
        border-radius: 10px;
    }
}
/* Bouton bas de page */

.boutonappelcaro {
    display: inline-block;
    background-color: white;
    color: var(--main-title-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.boutonappelcaro:hover {
    transform: translateY(-2px);
    background-color: #f0f0f0;
}


/* Why Section */

.why-section {
    padding: 6rem 0;
    background-color: #f8f8f8;
    overflow: hidden;
}

.section-why {
    padding: 80px 0;
    margin-bottom: 80px;
    background-color: var(--color-background);
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-header h2 {
    font-size: 2.5rem !important;
    line-height: 1.3;
    color: var(--main-font-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.why-header h2 i {
    font-weight: 200;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.why-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.why-features {
    display: grid;
    gap: 2rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: var(--main-font-color);
    font-size: 1.3rem !important;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item h3::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.why-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

@media screen and (max-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-gallery {
        order: -1;
    }

    .why-header h2 {
        font-size: 2rem !important;
    }
}

@media screen and (max-width: 768px) {
    .why-section {
        padding: 4rem 0;
    }

    .why-container {
        padding: 0 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1.2rem !important;
    }
}

@media screen and (max-width: 480px) {
    .why-gallery {
        gap: 1rem;
    }

    .why-header h2 {
        font-size: 1.8rem !important;
    }
}



/* texte presentation fullscreen 1 */


.presentation-section {
    padding: 5% 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.presentation-container {
    display: flex;
    align-items: center;
    gap: 5%;
}

.presentation-image {
    flex: 1;
    position: relative;
}

.presentation-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.presentation-content {
    flex: 1;
    padding-right: 5%;
}

.presentation-content h2 {
    font-size: 2rem;
    line-height: 1.45;
    font-weight: 200;
    margin-bottom: 2rem;
    color: var(--main-font-color);
}

.presentation-content h2 b {
    font-weight: 600;
}

.presentation-content h3 {
    font-size: 1.2rem;
    line-height: 1.85;
    font-weight: 200;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--main-font-color);
}

.presentation-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--main-font-color);
}

@media (max-width: 768px) {
    .presentation-container {
        flex-direction: column;
        gap: 2rem;
    }
    .presentation-container div:nth-child(2) {
         order: -1;
    }

    .presentation-content {
        padding: 0 5%;
    }

    .presentation-image {
        width: 100%;
        padding: 0 5%;
    }
}

/* texte presentation fullscreen 2 */


.service-client-section {
    width: 100%;
    margin-top: 5rem;
    padding: 0;
}

.service-client-grid {
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    align-content: stretch;
    align-items: center;
    max-width: 1200px;
    color: var(--color-fonce);
}

.service-client-image {
    flex: 1;
    position: relative;
    margin: 0;
    padding: 0;
}

.service-client-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    margin: 0;
    display: block;
}

.service-client-content {
    flex: 1;
    padding: 4rem;
}

.service-client-title {
    font-size: 1.777rem;
    line-height: 1.45;
    font-weight: 200;
    margin-bottom: 1.5rem;
}

.service-client-subtitle {
    font-size: 18px;
    line-height: 1.85;
    font-weight: 200;
    font-style: italic;
    margin-bottom: 2rem;
    color: #666;
}

.service-client-text p {
    line-height: 1.85;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-client-grid {
        flex-direction: column;
    }
    
    .service-client-image {
        min-height: 300px;
        order: 2;
    }
    
    .service-client-content {
        order: 1;
        text-align: center;
    }
}

/* Who we are */

.container {
    height: 100%;
  }
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    flex-direction: column;
  }
  
  .title {
    font-size: 38px;
    color: #616161;
    font-style: italic;
    font-weight: 800;
  }
  
  .timeline {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
  }
  .timeline .swiper-container {
    height: 600px;
    width: 100%;
    position: relative;
  }
  .timeline .swiper-wrapper {
    transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
  }
  .timeline .swiper-slide {
    position: relative;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .timeline .swiper-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -115%;
    bottom: -10%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
    border-radius: 100%;
  }
  .timeline .swiper-slide-content {
    position: absolute;
    text-align: center;
    width: 80%;
    max-width: 310px;
    right: 50%;
    top: 13%;
    transform: translate(50%, 0);
    font-size: 12px;
    z-index: 2;
  }
  .timeline .swiper-slide .timeline-year {
    display: block;
    font-style: italic;
    font-size: 42px;
    margin-bottom: 50px;
    transform: translate3d(20px, 0, 0);
    color: #d4a024;
    font-weight: 300;
    opacity: 0;
    transition: 0.2s ease 0.4s;
  }
  .timeline .swiper-slide .timeline-title {
    font-weight: 800;
    font-size: 34px;
    margin: 0 0 30px;
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.5s;
  }
  .timeline .swiper-slide .timeline-text {
    line-height: 1.5;
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.6s;
  }
  .timeline .swiper-slide-active .timeline-year {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.6s;
  }
  .timeline .swiper-slide-active .timeline-title {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.7s;
  }
  .timeline .swiper-slide-active .timeline-text {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.8s;
  }
  .timeline .swiper-pagination {
    right: 15% !important;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    z-index: 1;
  }
  .timeline .swiper-pagination::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .timeline .swiper-pagination-bullet {
    width: auto;
    height: auto;
    text-align: center;
    opacity: 1;
    background: transparent;
    color: #d4a024;
    margin: 15px 0 !important;
    position: relative;
  }
  .timeline .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -32.5px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #d4a024;
    transform: scale(0);
    transition: 0.2s;
  }
  .timeline .swiper-pagination-bullet-active {
    color: #d4a024;
  }
  .timeline .swiper-pagination-bullet-active::before {
    transform: scale(1);
  }
  .timeline .swiper-button-next,
  .timeline .swiper-button-prev {
    background-size: 20px 20px;
    top: 15%;
    width: 20px;
    height: 20px;
    margin-top: 0;
    z-index: 2;
    transition: 0.2s;
  }
  .timeline .swiper-button-prev {
    left: 8%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
  }
  .timeline .swiper-button-prev:hover {
    transform: translateX(-3px);
  }
  .timeline .swiper-button-next {
    right: 8%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
  }
  .timeline .swiper-button-next:hover {
    transform: translateX(3px);
  }
  @media screen and (min-width: 768px) {
    .timeline .swiper-slide::after {
      right: -30%;
      bottom: -8%;
      width: 240px;
      height: 50%;
      box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
    }
    .timeline .swiper-slide-content {
      right: 30%;
      top: 50%;
      transform: translateY(-50%);
      width: 310px;
      font-size: 11px;
      text-align: right;
    }
    .timeline .swiper-pagination {
      display: flex;
    }
    .timeline .swiper-button-prev {
      top: 15%;
      left: auto;
      right: 15%;
      transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-prev:hover {
      transform: rotate(90deg) translate(-3px, 10px);
    }
    .timeline .swiper-button-next {
      top: auto;
      bottom: 15%;
      right: 15%;
      transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-next:hover {
      transform: rotate(90deg) translate(3px, 10px);
    }
  }
  @media screen and (min-width: 1024px) {
    .timeline .swiper-slide::after {
      right: -20%;
      bottom: -12%;
      width: 240px;
      height: 50%;
      box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
    }
    .timeline .swiper-slide-content {
      right: 25%;
    }
  }


/* call to action */

.calltoaction {
    padding: 6% 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.calltoaction h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 0.7;
    max-width: 800px;
}

.calltoaction h2 i {
    color: #c59d5f;
    display: inline-block;
    position: relative;
}

.boutoncalltoaction {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    color: #fff;
    background-color: #c59d5f;
    border: 2px solid #c59d5f;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.boutoncalltoaction::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.boutoncalltoaction:hover {
    background-color: transparent;
    color: #c59d5f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
}

.boutoncalltoaction:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .calltoaction {
        padding: 15% 5%;
    }
    
    .calltoaction h2 {
        font-size: 1.8rem;
    }
    
    .boutoncalltoaction {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* cta-section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../img/w1000/mozza-tomate.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/w1500/mozza-tomate.webp') repeat;
    mix-blend-mode: overlay;
}

.cta-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: #fff;
}

.cta-content {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background-color: white;
    color:var(--main-title-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: #f8f8f8;
}

.cta-button svg {
    margin-left: 0.8rem;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .cta-content {
        padding: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-container {
        padding: 0 1.5rem;
    }

    .cta-content {
        padding: 1.5rem;
    }
}


/* logos clients */

.clients-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
    overflow: hidden;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clients-title {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-title h2 {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--main-font-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.clients-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scrollLogos 20s linear infinite;
    padding: 2rem 0;
}

.client-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.client-logo img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Style pour le conteneur de défilement */
.logos-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logos-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        #f8f8f8 0%, 
        transparent 5%, 
        transparent 95%, 
        #f8f8f8 100%
    );
    pointer-events: none;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .clients-logos {
        gap: 2rem;
    }
    
    .client-logo img {
        max-width: 120px;
    }
}

/* setion col 2 */
.typeclients-section {
    padding: 6rem 0;
    background-color: #fff;
}

.typeclients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.typeclients-header {
    text-align: center;
    margin-bottom: 4rem;
}

.typeclients-header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--main-font-color);
    margin-bottom: 1rem;
}

.typeclients-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.typeclients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.typeclient-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.typeclient-card:hover {
    transform: translateY(-5px);
}

.typeclient-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.typeclient-card:hover .typeclient-image img {
    transform: scale(1.05);
}

.typeclient-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: #fff;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.typeclient-content h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-style: italic;
}

.typeclient-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.typeclient-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.typeclient-card:hover .typeclient-link {
    opacity: 1;
    transform: translateY(0);
    color:#000;
}

.typeclient-link:hover {
    background-color: #fff;
    color: var(--main-color);
}

@media screen and (max-width: 968px) {
    .typeclients-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .typeclient-image {
        height: 400px;
    }

    .typeclients-header h2 {
        font-size: 1.8rem;
    }

    .typeclient-content h3 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .typeclients-container {
        padding: 0 1rem;
    }

    .typeclient-image {
        height: 350px;
    }

    .typeclient-content {
        padding: 1.5rem;
    }

    .typeclient-content h3 {
        font-size: 1.4rem;
    }

    .typeclient-content p {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--main-bg-color);
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, var(--main-bg-color), transparent);
    z-index: 1;
}

.contact-content {
    color: white;
    position: relative;
    z-index: 2;
}

.contact-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-phone {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.phone-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-separator {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
    position: relative;
}

.contact-separator::before,
.contact-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-separator::before {
    left: 0;
}

.contact-separator::after {
    right: 0;
}

.contact-scroll {
    display: inline-block;
    background: white;
    color: var(--main-bg-color);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-scroll:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.contact-image {
    position: relative;
    z-index: 2;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.contact-image:hover img {
    transform: scale(1.02);
}

.form-section {
    background: #f8f9fa;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    color: var(--main-bg-color);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-bg-color);
    border-radius: 3px;
}

/* Responsive Design Page contact */
@media (max-width: 1200px) {
    .contact-hero {
        padding: 3rem;
    }

    .contact-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .contact-hero {
        grid-template-columns: 1fr;
        background: var(--main-bg-color);
        text-align: center;
    }

    .contact-hero::before {
        display: none;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-separator::before,
    .contact-separator::after {
        width: 25%;
    }

    .contact-image {
        margin-top: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-section {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 2rem 1rem;
    }

    .contact-hero {
        padding: 2rem;
    }

    .contact-content h1 {
        font-size: 2.5rem;
    }

    .contact-phone {
        width: 100%;
    }

    .contact-scroll {
        width: 100%;
        padding: 1rem 2rem;
    }

    .form-section {
        padding: 2rem 1rem;
    }

    .form-container h2 {
        font-size: 2rem;
    }
}

/* FAQ Section Styling */

.faq-section {
    margin: 6rem auto;
    padding: 2rem;
    text-align: center;
}

.faq-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #333;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.faq-item {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.faq-item:last-child::after {
    display: none;
}

.faq-question {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.faq-answer {
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.faq-answer p {
    margin-bottom: 1.5rem;
}

.faq-answer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.faq-answer li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
        margin: 3rem auto;
    }
    
    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 3rem;
        letter-spacing: 1px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .faq-container {
        gap: 3rem;
    }

    .faq-item {
        padding: 0 0.5rem;
    }
    
    .faq-item::after {
        width: 60px;
        bottom: -1.5rem;
    }
}

/* Styles pour la FAQ avec details/summary */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.faq-item summary {
    position: relative;
    padding: 1.5rem 0 1.5rem 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--main-title-color);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.5rem;
    color: #444;
    line-height: 1.6;
    transform-origin: top;
    animation: faqAnswer 0.3s ease-in-out;
}

@keyframes faqAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Style du focus pour l'accessibilité */
.faq-item summary:focus {
    outline: 3px solid var(--main-color);
    outline-offset: 2px;
}

/* Amélioration du contraste pour le texte */
.faq-item summary,
.faq-answer {
    color: #333;
}

/* Support pour réduire les animations */
@media (prefers-reduced-motion: reduce) {
    .faq-answer {
        animation: none;
    }
    
    .faq-item summary::after {
        transition: none;
    }
}

/* Footer */
.footer {
    background-color:#09111f;
    padding: 5% 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    color: #fff;
}

.footer > div {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: #c59d5f;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: #a1a1a1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #c59d5f;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #a1a1a1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #c59d5f;
}

#button-menu {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #c59d5f;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

#button-menu:hover {
    background-color: #c59d5f;
    color: #fff !important;
}

.liensocialmediafooter {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.liensocialmediafooter img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.liensocialmediafooter a:hover img {
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .liensocialmediafooter {
        justify-content: center;
    }
}

/* image wrapper */

.all-preta {
    padding: 8rem 2rem;
    background-color: #fff;
    position: relative;
}

.all-preta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background-color: #f8f8f8;
    z-index: 0;
}

.accueil-press-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.text-column {
    padding-right: 2rem;
}

.text-column h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 300;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.text-column h3 {
    font-size: 2rem;
    color: #666;
    font-weight: 300;
    margin: 0 0 4rem;
    letter-spacing: -0.3px;
}

.accueil-press-list {
    display: grid;
    gap: 2.5rem;
}

.accueil-pres-item {
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.accueil-pres-dot {
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(200, 169, 126, 0.5);
    transition: all 0.3s ease;
}

.accueil-pres-item:hover {
    transform: translateX(8px);
}

.accueil-pres-item:hover .accueil-pres-dot {
    transform: scale(1.5);
    background-color: rgba(200, 169, 126, 0.8);
}

.accueil-pres-item h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.accueil-pres-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 1200px) {
    .all-preta::before {
        width: 25%;
    }
}

@media (max-width: 1024px) {
    .all-preta {
        padding: 6rem 2rem;
    }

    .all-preta::before {
        display: none;
    }

    .accueil-press-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .images-column {
        min-height: 550px;
        order: 2;
    }

    .text-column {
        order: 1;
        padding-right: 0;
    }

    .text-column h2 {
        font-size: 2.5rem;
    }

    .text-column h3 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .all-preta {
        padding: 4rem 1rem;
    }

    .images-column {
        min-height: 450px;
    }

    .text-column h2 {
        font-size: 2.2rem;
    }

    .text-column h3 {
        font-size: 1.5rem;
    }

    .accueil-pres-item {
        padding-left: 1.25rem;
    }

    .accueil-pres-item h4 {
        font-size: 1.3rem;
    }
}

.images-column {
    position: relative;
    min-height: 800px;
    perspective: 1000px;
}

.image-wrapper {
    position: sticky;
    width: 100%;
    top: 0;
    height: 100vh;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

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

@media (max-width: 1200px) {
    .images-column {
        min-height: 750px;
    }

    .image-wrapper {
        height: 400px;
    }

    .image-wrapper.middle {
        top: 180px;
    }
}

@media (max-width: 1024px) {
    .images-column {
        min-height: 700px;
        perspective: none;
    }

    .image-wrapper {
        height: 380px;
        width: 75%;
        transform: none !important;
    }

    .image-wrapper.middle {
        top: 160px;
    }

    .image-wrapper.bottom {
        right: 15%;
    }

    .image-wrapper:hover {
        transform: translateY(-10px) !important;
    }
}

@media (max-width: 768px) {
    .images-column {
        min-height: 400px;
    }

    .image-wrapper {
        height: 400px;
        width: 100%;
    }

    .image-wrapper.top {
        position: relative;
        right: auto;
    }

    .image-wrapper.middle,
    .image-wrapper.bottom {
        display: none;
    }

    .image-wrapper:hover {
        transform: translateY(-8px) !important;
    }
}
/* Gros titre */

.gros-titre {
    padding: 0rem 2rem 6rem 2rem;
    text-align: left;
    background-color: #ffffff00;
    position: relative;
    overflow: hidden;
    z-index: 500;
    width: 90%;
    margin: -5rem auto;
}

.gros-titre h1 {
    font-size: 8.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    background: linear-gradient(45deg, #ae4253, #ae4253);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -4px;
    margin: 0;
    display: inline-block;
    position: relative;
}

.gros-titre h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(45deg, rgba(206, 43, 55, 0.2), rgba(9, 17, 31, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(-0.05em) translateY(0.05em);
    filter: blur(1px);
}

.gros-titre:hover h1 {
    transform: translateY(-5px);
}

.gros-titre:hover h1::after {
    transform: scaleX(1);
}

@media (max-width: 1200px) {
    .gros-titre h1 {
        font-size: 6.5rem;
        letter-spacing: -3px;
    }
    .gros-titre h1::after {
        height: 0.5rem;
        bottom: -0.8rem;
    }
}

@media (max-width: 768px) {
    .gros-titre {
        padding: 4rem 1rem;
        margin: 0rem auto;
    }
    .gros-titre h1 {
        font-size: 3.8rem;
        letter-spacing: -2px;
    }
    .gros-titre h1::after {
        height: 0.4rem;
        bottom: -0.6rem;
    }
}

/* Merci Section */

.merci-section {    
    width: 50%;
    margin: auto;
    padding: 3rem 0rem;
}

/* Services Grid Section */
.services-grid-section {
    padding: 4rem 2rem;
    background-color: var(--color-background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1rem;
    margin: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.service-card p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-section {
        padding: 2rem 1rem;
    }
}

/* Contact CTA Section */
.contact-cta {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/w1000/cocktail-lancement-produit.webp') no-repeat center/cover;
    text-align: center;
    color: white;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-cta .button-primary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.contact-cta .button-primary:hover {
    transform: translateY(-2px);
    background-color: var(--color-primary-dark);
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 4rem 1rem;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    .contact-cta .button-primary {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

/* Prestations Hero */

.prestations-hero {
    padding: 10rem 2rem 4rem;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.prestations-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.prestations-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.prestations-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.prestations-grid {
    padding: 4rem 2rem;
    background-color: var(--color-background);
}

.prestations-grid__titre {
    text-align: center;
    margin-bottom: 3rem;
}

.prestations-grid__titre h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.prestations-grid__titre p {
    color: var(--color-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.prestations-grid__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.prestation-carte {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestation-carte:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prestation-carte img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prestation-carte h2 {
    padding: 1rem;
    margin: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.prestation-carte p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .prestations-grid__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .prestations-grid__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .prestations-hero {
        padding: 10rem 1rem 3rem;
        min-height: 40vh;
    }

    .prestations-hero h1 {
        font-size: 2.2rem;
    }

    .prestations-hero p {
        font-size: 1rem;
    }

    .prestations-grid__titre h2 {
        font-size: 2rem;
    }
    
    .prestations-grid__titre p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .prestations-grid__container {
        grid-template-columns: 1fr;
    }
    
    .prestations-grid {
        padding: 2rem 1rem;
    }
}

/* Section Prestations Hero */
.prestations-hero {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/w1000/buffet-francais-italien.webp') no-repeat center/cover;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.prestations-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.prestations-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.prestations-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.prestations-grid {
    padding: 4rem 2rem;
    background-color: var(--color-background);
}

.prestations-grid__titre {
    text-align: center;
    margin-bottom: 3rem;
}

.prestations-grid__titre h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.prestations-grid__titre p {
    color: var(--color-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.prestations-grid__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.prestation-carte {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestation-carte:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prestation-carte img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prestation-carte h3 {
    padding: 1rem;
    margin: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.prestation-carte p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .prestations-grid__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .prestations-grid__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .prestations-hero {
        padding: 10rem 1rem 3rem;
        min-height: 40vh;
    }

    .prestations-hero h1 {
        font-size: 2.2rem;
    }

    .prestations-hero p {
        font-size: 1rem;
    }

    .prestations-grid__titre h2 {
        font-size: 2rem;
    }
    
    .prestations-grid__titre p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .prestations-grid__container {
        grid-template-columns: 1fr;
    }
    
    .prestations-grid {
        padding: 2rem 1rem;
    }
}

/* Section Contenu prestations-traiteurs */
.contenu-prestations-traiteurs {
    padding: 4rem 2rem;
    background-color: var(--color-background-alt);
}

.contenu-prestations-traiteurs__section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 4rem;
    gap: 2rem;
}

.contenu-prestations-traiteurs__section:last-child {
    margin-bottom: 0;
}

.contenu-prestations-traiteurs__section--inverse {
    direction: rtl;
}

.contenu-prestations-traiteurs__texte {
    padding: 3rem;
    direction: ltr;
}

.contenu-prestations-traiteurs__texte h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contenu-prestations-traiteurs__texte p {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contenu-prestations-traiteurs__texte p:last-child {
    margin-bottom: 0;
}

.contenu-prestations-traiteurs__image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contenu-prestations-traiteurs__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.prestation-link {
    display: inline-block;
    margin-top: 8px;
    color: #d9534f;
    font-weight: bold;
    text-decoration: none;
    padding: 0px 1rem 1rem 1rem;
}

.prestation-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .contenu-prestations-traiteurs__section {
        gap: 2rem;
    }

    .contenu-prestations-traiteurs__texte h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contenu-prestations-traiteurs {
        padding: 3rem 1.5rem;
    }

    .contenu-prestations-traiteurs__section,
    .contenu-prestations-traiteurs__section--inverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .contenu-prestations-traiteurs__texte h2 {
        font-size: 1.8rem;
    }

    .contenu-prestations-traiteurs__texte p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contenu-prestations-traiteurs {
        padding: 2rem 1rem;
    }

    .contenu-prestations-traiteurs__section {
        margin-bottom: 2rem;
    }

    .contenu-prestations-traiteurs__texte h2 {
        font-size: 1.6rem;
    }
}


/* Section prestations-traiteurs Details */
.prestations-traiteurs-details {
    padding: 4rem 2rem;
    background-color: var(--color-background);
}

.prestations-traiteurs-details__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.prestations-traiteurs-details__bloc {
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestations-traiteurs-details__bloc:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.prestations-traiteurs-details__bloc h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.prestations-traiteurs-details__bloc h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.prestations-traiteurs-details__bloc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prestations-traiteurs-details__bloc li {
    color: #f3f3f3;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 1.5;
}

.prestations-traiteurs-details__bloc li:last-child {
    border-bottom: none;
}

.prestations-traiteurs-details__texte {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.prestations-traiteurs-details__texte p {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.prestations-traiteurs-details__texte p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .prestations-traiteurs-details__container {
        gap: 2rem;
    }

    .prestations-traiteurs-details__bloc {
        padding: 1.5rem;
    }

    .prestations-traiteurs-details__bloc h2 {
        font-size: 1.3rem;
    }

    .prestations-traiteurs-details__bloc h3 {
        font-size: 1.3rem;
    }

    .prestations-traiteurs-details__bloc li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .prestations-traiteurs-details {
        padding: 3rem 1.5rem;
    }

    .prestations-traiteurs-details__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .prestations-traiteurs-details__bloc h2 {
        font-size: 1.2rem;
    }

    .prestations-traiteurs-details__bloc li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }

    .prestations-traiteurs-details__texte p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .prestations-traiteurs-details {
        padding: 2rem 1rem;
    }

    .prestations-traiteurs-details__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prestations-traiteurs-details__bloc {
        padding: 1.2rem;
    }

    .prestations-traiteurs-details__bloc h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .prestations-traiteurs-details__bloc h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .prestations-traiteurs-details__bloc li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

/* Grid 3 colonnes responsive */
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 4rem 5%;
    margin: 2rem auto;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
}

.grid-3col h2 {
    grid-column: 1 / -1;
    text-align: left;
    padding: 0 0 3rem 0;
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--main-title-color);
    max-width: 600px;
    font-weight: 600;
    position: relative;
    margin-bottom: 1rem;
}

.grid-3col h2::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.grid-3col h2:hover::after {
    width: 80px;
}

@media (max-width: 1200px) {
    .grid-3col {
        gap: 2rem;
        padding: 3rem 5%;
    }
}

@media (max-width: 768px) {
    .grid-3col {
        padding: 2rem 5%;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid-3col h2 {
        font-size: 1.75rem;
        padding: 0 0 2rem 0;
        max-width: 100%;
    }
    
    .grid-3col h2::after {
        bottom: 1.2rem;
        width: 40px;
    }
}

/* Vignette classique */
.classic-thumbnail {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.classic-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.classic-thumbnail img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.classic-thumbnail:hover img {
    transform: scale(1.05);
}

.classic-thumbnail-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), white);
}

.classic-thumbnail h3 {
    color: var(--main-title-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.classic-thumbnail:hover h3 {
    color: var(--primary-color);
}

.classic-thumbnail p {
    color: var(--main-font-color);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .classic-thumbnail img {
        height: 240px;
    }
    
    .classic-thumbnail-content {
        padding: 1.5rem;
    }
    
    .classic-thumbnail h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
}

/* Grid 2 colonnes pour la team */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.team-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-image:hover img {
    transform: scale(1.02);
}

.team-content {
    padding-right: 2rem;
}

.team-content h2 {
    color: var(--main-title-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    position: relative;
}

.team-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.team-content p {
    color: var(--main-font-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .team-grid {
        gap: 3rem;
        padding: 3rem 5%;
    }
    
    .team-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 5%;
    }
    
    .team-content {
        padding-right: 0;
        order: -1;
    }
    
    .team-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .team-content p {
        font-size: 1rem;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    background-color: #fff;
}

.team-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.1));
    z-index: 1;
    pointer-events: none;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-image:hover img {
    transform: scale(1.02);
}

.team-content {
    padding-right: 2rem;
}

.team-content h2 {
    color: var(--main-title-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    position: relative;
}

.team-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.team-content h2:hover::after {
    width: 80px;
}

.team-content p {
    color: var(--main-font-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.team-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .team-grid {
        gap: 3rem;
        padding: 3rem 5%;
    }
    
    .team-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 5%;
    }
    
    .team-content {
        padding-right: 0;
        order: -1;
    }
    
    .team-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .team-content p {
        font-size: 1rem;
    }
    
    .team-image {
        border-radius: 8px;
    }
}

/* Vignettes horizontales */
.horizontal-cards {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.horizontal-cards h2 {
        grid-column: 1 / -1;
        text-align: left;
        padding: 0 0 3rem 0;
        font-size: 2.2rem;
        line-height: 1.3;
        color: var(--main-title-color);
        max-width: 600px;
        font-weight: 600;
        position: relative;
        margin-bottom: 1rem;
    }

.horizontal-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2.5rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* Responsive design pour les cartes horizontales */
@media (max-width: 1024px) {
    .horizontal-card {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }
    
    .horizontal-cards {
        padding: 0 3%;
    }
}

@media (max-width: 768px) {
    .horizontal-cards {
        padding: 0 2%;
        margin: 3rem auto;
        gap: 2rem;
    }
    
    .horizontal-cards h2 {
        font-size: 2rem;
        padding: 0 0 2rem 0;
    }
    
    .horizontal-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .horizontal-card__image {
        min-height: 250px;
    }
    
    .horizontal-card__image img {
        height: 250px;
    }
    
    .horizontal-card__content {
        padding: 2rem;
    }
    
    .horizontal-card__title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .horizontal-card__text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .horizontal-cards {
        padding: 0 1.5%;
        margin: 2rem auto;
        gap: 1.5rem;
    }
    
    .horizontal-card__image {
        min-height: 200px;
    }
    
    .horizontal-card__image img {
        height: 200px;
    }
    
    .horizontal-card__content {
        padding: 1.5rem;
    }
}

.horizontal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.horizontal-card:hover::before {
    opacity: 0.03;
}

.horizontal-card__image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    z-index: 2;
}

.horizontal-card__image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.horizontal-card:hover .horizontal-card__image img {
    transform: scale(1.05);
}

.horizontal-card__content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.horizontal-card__title {
    color: var(--main-title-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.horizontal-card:hover .horizontal-card__title {
    color: var(--primary-color);
}

.horizontal-card__title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.horizontal-card:hover .horizontal-card__title::after {
    width: 70px;
}

.horizontal-card__text {
    color: var(--main-font-color);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
    transition: opacity 0.3s ease;
}

.horizontal-card:hover .horizontal-card__text {
    opacity: 1;
}
/* Styles d'accessibilité */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--main-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Amélioration du focus pour la navigation au clavier */
:focus {
    outline: 3px solid var(--main-color);
    outline-offset: 2px;
}

/* Style du focus personnalisé pour les éléments interactifs */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--main-color);
    outline-offset: 2px;
    text-decoration: underline;
}


/* Style des éléments de FAQ accessibles */
.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--main-title-color);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #444;
    line-height: 1.6;
}