@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

.home-container {
    min-height: 100vh;
    background: url(images/header.webp);
    background-size: cover;
  
}

.header {

    position: absolute;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    padding: 10px 50px;
    background-color: rgb(0 0 0 / 50%);
    justify-content: space-between;
    transition: all 0.5s;
}

.contact-us-title{
        display: flex;
    justify-content: center;
}

.logo {
    width: auto;
    height: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
    overflow: hidden;
    width: auto;
}

.nav-links a {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    position: relative;
    display: block;
    transition: all 0.5s;
    padding: 2px 5px;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
}

.nav-links a:hover {
    transform: translateY(-100%);
}

.landing {
    line-height: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
}

.big-title {
    width: 60%;
    color: white;
    font-size: 75px;
    font-family: "Abril Fatface", cursive;
    font-weight: 100;
    background-color: rgb(0 0 0 / 50%); /* 50% transparent */
    padding: 20px;
    word-break: break-word;
}
/* POUR MON MENU */
.delivery-link {
    line-height: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
    width: 200px;
    justify-content: space-between;
    overflow: hidden;
    color: white;
    font-size: 25px;
    font-family: "Abril Fatface", cursive;

    padding: 12px 24px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 18px;
   
    transition: all 0.3s ease;
    background-color: rgb(0 0 0 / 50%); /* 50% transparent */

}

.image-our-story {
    background-image: url(images/notre_histoire/histoire.webp);
    background-size: contain; /* garde les proportions de l'image */
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    aspect-ratio: 2 / 1;
}
  
@media (max-width: 800px) {
    .image-our-story {
        background-image: url(images/notre_histoire/histoire_mobile.webp);
        background-size: contain; /* garde les proportions de l'image */
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        aspect-ratio: 0.563 / 1;
    }
}

.image-services {
    background-image: url(images/notre_histoire/histoire.webp);
    background-size: contain; /* garde les proportions de l'image */
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    aspect-ratio: 2 / 1;
}
  
@media (max-width: 800px) {
    .image-services {
        background-image: url(images/notre_histoire/histoire_mobile.webp);
        background-size: contain; /* garde les proportions de l'image */
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        aspect-ratio: 0.563 / 1;
    }
}

.scroll-text {
    color: white;
    position: relative;
    transition: transform 0.4s;
}

.scroll-text::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
}

.scroll-text:hover {
    transform: translateY(-100%);
}

.scroll-icon {
    font-size: 25px;
    color: white;
}

.delivery-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1440px;
    margin: 0 auto;
    background: white;
    padding:45px 0 25px 0;
    
}

.delivery-container div {
    display: flex;
    flex-direction: column;
    align-items: center;
   
}
/* COULEUR ICONES */
.delivery-icon {
    font-size: 50px;
    color : #e73a29;
    
}

.delivery-container .box-content {
    font-weight: 500;
    font-size: 20px;
    margin-top: 30px;
    width: 220px;
    text-align: center;
}

.delivery-container .box-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.best-sales-container {
    display: flex;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto;
    flex-direction: column;
    background: white;
    padding: 25px 0;
}

.section-title {
    position: relative;
    font-family: "Abril Fatface", cursive;
    font-size: 50px;
    font-weight: 100;
}

.section-title::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 7px;
    background: #e73a29;
    bottom: 0;
    box-shadow: 0 2px 2px #0000001F;
}

.retrouvez-nous {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.perigueux {
    background: url(images/retrouvez_nous/perigueux.webp);
}

.saint-astier {
    background: url(images/retrouvez_nous/saint_astier.webp);
}

.plant-box::before {
    content: "En savoir plus";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FFFFFFDF;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -100%;
    transition: left 0.4s;
    font-size: 25px;
    font-weight: 500;
}

.plant-box:hover::before {
    left: 0;
}

.plant-bio {
    position: absolute;
    bottom: 0;
    display: flex;
    background: #FFFFFFDF;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

.plant-name {
    font-weight: 500;
    font-size: 24px;
}

.plant-price {
    font-weight: 300;
    font-size: 15px;
}

.plants-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 0;
}

#contactez-nous{
    margin: 0 auto;
    padding: 25px 0 0 0;
}

.grid-plants {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 400px);
}

.plant-grid1 {
    background: url(images/nos_produits/paella.webp);
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  
}

.plant-grid2 {
    background: url(images/nos_produits/roti.webp);
    grid-column: 3 / 5;
}

.plant-grid3 {
    background: url(images/nos_produits/jambalaya.webp);
    grid-column: 3 / 5;
}

.plant-grid4 {
    background: url(images/nos_produits/salade_orientale.webp);
    grid-column: 1;
    grid-row: 3 / 5;
}

.plant-grid5 {
    background: url(images/nos_produits/fideua.webp);
    grid-column: 2 / 4;
    grid-row: 3 / 5;
}

.plant-grid6 {
    background: url(images/nos_produits/thai.webp);
    grid-column: 4;
    grid-row: 3 / 5;
}
.h3color {
    color: #f5cb5c;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .84);
    font-family: Great Vibes, cursive;
    font-size: 55px;
}
.plant-box {
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    text-decoration: none;
    color: black;
    overflow: hidden;
    transition: background 0.4s;
}

.no-grid {
    height: 500px;
    flex: 1;
    min-width: 350px;
}

.footer {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    flex-wrap: wrap;
}

.footer_img {
    height: auto;
    display: block;
    width: 100%;
}

.copyrights {
    padding-right: 20px;
}

.conditions {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.burger-container {
    position: absolute;
}

@media (max-width: 1764px) {
    .nav-links a {
        font-size: 20px;
    }

    .nav-links li {
        margin:0;
        margin-right: 30px;
        overflow: hidden;
        transition: all 0.5s;
    }
}

@media (max-width: 1554px) {
    .nav-links a {
        font-size: 15px;
    }

    .nav-links li {
        margin:0;
        margin-right: 20px;
        overflow: hidden;
        transition: all 0.5s;
    }
}

@media (max-width: 1150px) {

    .header {
        justify-content: space-between;
    }

    .burger-container {
        width: 35px;
        height: 30px;
        position: relative;
    }

    .burger {
        display: block;
        height: 3px;
        width: 30px;
        background: white;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: background 0.4s;
    }

    .burger-container.active .burger {
        background: transparent;
    }

    .burger::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: white;
        bottom: 8px;
        transition: transform 0.4s,
            bottom 0.4s,
            background 0.4s;
    }

    .burger-container.active .burger::before {
        bottom: 0;
        transform: rotate(-45deg);
        background: black;
    }

    .burger::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: white;
        top: 8px;
        transition: transform 0.4s,
            top 0.4s background 0.4s;
    }

    .burger-container.active .burger::after {
        top: 0;
        transform: rotate(45deg);
        background: black;
    }

    .nav-links {
        position: absolute;
        width: 100%;
        height: 50vh;
        background: white;
        left: 0;
        top: -50vh;
        transition: top 0.4s ease-in-out;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        padding: 0 50px;
    }

    .nav-links.active {
        top: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        color: black;
        font-size: 30px;
    }

    .delivery-container {
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }

    .delivery-container div {
        margin: 30px;
    }

    .grid-plants {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .grid {
        flex: 1;
        min-width: 350px;
        height: 500px;
    }
}

@media (max-width: 1150px) {
    .big-title {
        width: 100%;
    }
    .landing{
        padding: 0 50px;
    }
    .header {
        height: 100px;
        transition: all 0.5s;
    }
}

@media (max-width: 550px) {

    .landing,
    .best-sales-container,
    .plants-container,
    .footer {
        padding: 10px;
    }

    .big-title {
        font-size: 40px;
        line-height: 50px;
        width: 100%;
    }

    .nav-links a {
        font-size: 20px;
    }

    .section-title {
        font-size: 30px;
        text-align: center;
    }

    .plant-box {
        min-width: 300px;
    }

    .plant-name,
    .plant-box::before {
        font-size: 20px;
    }

    .plant-price {
        font-size: 10px;
    }

}

@media (max-width: 400px) {

    .footer {
        justify-content: center;
    }
}



@media (max-width: 768px) {
    .styled-button {
        font-size: 14px;
    }
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* pour centrer l'image */
}

.facebook-button {
    background-color: #1877f2;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 22px;
}




 /* bloc service*/
body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background-color:white;
      /**background-color: #f9f9f9;*/
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
      gap: 20px;
    }

    .service-box {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      width: 300px;
      overflow: hidden;
      transition: transform 0.3s ease;


    }

    .service-box:hover {
      transform: translateY(-5px);
    }

    .service-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .service-content {
      padding: 20px;
    }

    .service-title {
      font-size: 20px;
      margin-bottom: 10px;
      color: #000000;
    }

    .service-description {
      font-size: 18px;
      color: #000000;
      margin-bottom: 15px;
    }

    .service-button {
      display: inline-block;
      padding: 10px 15px;
      background-color: #e73a29;;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

    .service-button:hover {
      background-color: #e67e22;
    }


   
   