body{
    background-color: white;
    font-family: 'Poppins';
    margin: 0;
    
    }
    

    header {
        background-color: #C2C2C2;
        color: white;
        padding: 1rem 0;
        padding: 1.2em;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .header-logo{
            margin-left: 1rem;
        }
    }    
    
    .language-selector {
        display: flex;
        gap: 7px; 
        align-items: center;
        justify-content: right;
        
    }
    
    .language-icon {
        background: none;
        border: none;
        cursor: pointer;
        
    }
    
    .language-icon img {
        width: 30px; 
        height: 30px;
    }
    
    .language-icon {
        width: 30px; 
        height: 30px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        
    }
    
    .language-icon:hover {
        transform: scale(1.1); 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    }
    

    .header-nav ul{
        background-color: white;
        position: fixed;
        z-index: 999;
        right: 0;
        top: 0;
        height: 100vh;
        margin: 0;
        list-style: none;
        width: 40%;
        text-align: right;
        padding: 2em;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
    
        li{
            margin: 1em 0;
            
            &:nth-of-type(1){
                margin-bottom: 2em;
                margin-top: 0em;
            }
    
            a{
                color: #ff4a7a;
                text-decoration: none;
                font-weight: 600;
                font-size: 1.1rem;
    
                &:hover{
                    text-decoration: underline;
                }
                
            }
    
        }
    }
    
    .header-nav ul.open {
        transform: translateX(0%);
    }
    
    
    
    .dropdown-header {
        position: relative;
    }
    
    .dropdown-toggle-header::after {
        content: ' ▼';
    }

    /* .header-nav ul li a:visited {
        color: #ff4a7a; 
    } */

    .dropdown-menu-header {
        display: none;
        position: fixed;
        background-color: #ffffff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        z-index: 1;
        flex-direction: column;
        right: 2em;
        font-weight: 400;
        text-align: right;
        margin-top: 5px;
        
    }
    
    .dropdown-menu-header a {
        color: white;
        padding: 10px;
        padding-left: 40px;
        padding-right: 20px;
        text-decoration: none;
        display: block;
    }
    
    .dropdown-menu-header a:hover {
        color: white;
        background-color: #1a1a1a;
        
           
    }
    
    .show {
        display: block;
    }
    
    

    .intro{
        display: flex;
        flex-direction: column;
        justify-content: center;     
        align-items: center;         
        margin-bottom: 3rem;
        margin-top: 6rem;
               
        h1, p, h3{
            text-align: center;
        
        }
        
        .main-message{ 
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem; 
             
            h1{  
                font-size: 2rem;
                line-height: 1.2;  
                margin: 0 auto; 
                           
            }
            
            h3{ 
                margin: 2 auto; 
                font-size: 1rem;
                color: #ffb703;
                line-height: 1.2; 
            }

            p{
                margin: 2 auto; 
                font-size: 1rem;
                line-height: 1.2;
                font-weight: 400;                
            }
    
        }
         
           
        .container {
            display: flex;
            justify-content: center;
            align-items: center;            
            background: linear-gradient(to top, transparent 20%, #ffb703 20%,#ffb703 80%, transparent 80%);             
            justify-content: center;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
        }
        
        .centered-image{
            width: 100%;
            height: 100%;
            max-height: 50%;
            object-fit: cover;            
        }
        
    }


    .features{        
        margin-top: 3rem;
        margin-bottom: 4rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;

        h2{
            font-size: 1.5rem;            
            line-height: 1.2;
            text-align: center;
            max-width: 400px;            
            margin: 1rem auto; 
            
        }
        
        .subtitle-features{            
            line-height: 1.2;            
            margin: 1rem auto;  
            padding: 0 2em;
            text-align: center;
            color: black;            
            font-size: 1rem;
            
        }

        .container{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 1.5rem;
            justify-content: center;
            position: relative;
            
        }
        
        .card-container {
            height: 350px;
            width: 300px;            
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
            background-color: #E2E2E2;
            border-radius: 20px;            
        }
        .card-container:hover {
            background-color: #ff4a7a;            
            .card-text{
                color: white;
            } 
            .card-title{
                color: white;
            }
            
        }
        
        .text-container{
            margin-top: 0em;
            height:150px;
            width: 250px;
            justify-content: center;
            text-align: center;
            
        }
                
        .svg-container{
            justify-content: center;
            align-items: center;
            display: flex;
            height:150px;
            width: 150px;
            margin-top: 2rem;
            
        }
        
        .card-logo{
            height:80%;
            width: 80%;
        } 

        .card-title{
            font-size: 1.2rem;
            margin-top: 1em;
            line-height: 1.1;
        }
    
        .card-text{
            font-size: 1rem;
            line-height: 1.2;
            font-weight: 400;
            
        }
        
    }

    

    .advantages{
        background-color: #a7d9e5;
        padding-top: 3rem;
        padding-bottom: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;

        .subtitle-advantages{
            align-items: center;            
            line-height: 1.2;
            max-width: 400px;
            margin: 1rem auto;  
            padding: 0 2em;
            text-align: center;
            color: white;            
            font-size: 1rem;
        }
        
        h2{
            font-size: 1.5rem;            
            line-height: 1.2;
            max-width: 400px;
            margin: 1rem auto; 
            padding: 0 2em;
            text-align: center;
            color: white;
        }
    
        .advantage-grid{
            display: flex;
            flex-wrap: wrap; 
            justify-content: center;
            position: relative;
        }
    
        .advantage {
            height: 260px;
            width: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            /* background-color: #b91414; */
        }
    
        .svg-container{
            justify-content: center;
            align-items: center;
            display: flex;
            height:200px;
            width: 200px;
            /* background-color: blue; */
            /* margin-top: 1rem; */
        }
    
        .advantage-logo{
            height:80%;
            width: 80%;
        }
        
        h3{
            text-align: center;
            color: white;
            font-size: 1rem;
            margin-top: 0em;
            line-height: 1.2;               
        }
    
    }
    
    .saveurs{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
        margin-bottom: 1rem;        
        padding-left: 2rem;
        padding-right: 2rem;
       
        .saveurs-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        h2{
            font-size: 1.5rem;            
            line-height: 1.2;
            max-width: 400px;
            margin: 0 auto; 
            padding: 0 2em;
            text-align: center;
            color: black;
        }

        .saveurs-grid{
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            max-width: 600px;
            align-items: center;
            justify-content: center;
            margin-left: 2rem;
            margin-right: 2rem;         
        }

        .saveurs-icon{
            width: 25%;
            height: 25%;
            /* background-color: #EFA320; */
        }

        p{
            text-align: center;
            color: black;
            font-size: 1rem;
            margin-top: 0em;
            line-height: 1.2;   
            max-width: 400px;
        }
        
    }

    .final{        
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;        
        margin-top: 0rem;
        margin-bottom: 3rem;
        

        hr{
            width: 50%;
            height: 2px; 
            background-color: #000000;
        }

        .final-message{
            display: flex;
            flex-direction: column;
            align-items: center;  
            justify-content: center;          
            gap: 1rem;
            padding-left: 2rem;
            padding-right: 2rem;
            
            

            h2{
                font-size: 1.5rem;
                margin-top: 2rem;
                line-height: 1.2;
                max-width: 400px;
                text-align: center;
                color: black;
            }

            p{
                text-align: center;
                color: black;
                font-size: 1rem;
                margin-top: 0em;
                line-height: 1.2; 
                font-weight: 500;  
                max-width: 600px; 
            }

            .ig{                
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                margin-top: 6rem;

                .ig-link{
                    width:20%;                                        
                }

                h3{
                    text-align: center;
                    color: black;
                    font-size: 1rem;                    
                    line-height: 1.2;                       
                }

                .ig-logo-hover {
                    display: none; /* Initially hidden */
                }
                
                .ig-link:hover .ig-logo {
                    display: none; /* Hide default icon */
                }
                
                .ig-link:hover .ig-logo-hover {
                    display: block; /* Show hover icon */
                }

            }

            

        }
    }    
        
    footer {
        background-color: #C2C2C2;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 1rem;
        margin-top: 2rem;

        .container {
            display: flex;
            flex-direction: column;
            height: 200px;
            justify-content: center;
            align-items: center;
        }
        
        .footer-links {
            margin-top: 2rem;
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        
        a {
            color: white;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.1rem;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
        
        .footer-logo {
            width: 100%;
            height: 100%;
            
        }
        
        .links-container{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;            
        }
        
           
        .copyright-text {
            color: white;
            font-weight: 300;
            font-size: 0.8rem;
        }
        
    }
    
    .savoir-plus{
        display: flex;
        justify-content: center;
        text-align: center;
        background-color: white;  
        padding-left: 2rem;     
        padding-right: 2rem;  
        padding-top: 2rem;
        padding-bottom: 0rem;
        
        h2{
            font-size: 1.5rem;
            line-height: 1.1;
            font-weight: 700;
            text-align: center;
            color: black;
            max-width: 400px;
        }
    }

    .contact-info{
        display: flex;
        justify-content: center;
        align-items: center; 
        padding-left: 2rem;     
        padding-right: 2rem;  
        padding-top: 0rem;
        padding-bottom: 3rem;

        p{
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.2;
            text-align: center;
            color: black;
            max-width: 400px;
        }

    }
    

    @media (min-width: 600px) {
          
         
        
    }
    
    
    @media (min-width: 1200px) {
        .intro{ 
            
        }
        
    }
    
    @media (min-width: 850px) {
        .hide-p-desktop{
            display: none;
        }
    }
    
    @media (min-width: 600px) {
        .hide-desktop{
            display:none;
        }
    
        .header-nav ul li a:visited {
            color: white;
        }
    
        .dropdown-menu-header {
            right: 200px;
            margin-top: 10px;
            background-color: #1a1a1a;
            text-align: center;
        }
        
        .dropdown-menu-header a {
    
            padding-left: 40px;
            padding-right: 40px;
        }
    
        .dropdown-menu-header a:hover {
            background-color: #fd3268;
        }
    
        .header-nav ul{
            position: unset;
            background: none;
            display: flex;
            gap: 2em;
            height: auto;
            width: auto;
            transform: translateX(0%);
        
            li a {
                color: white;
                font-weight: 400;
                font-size: 0.9rem;
                
                }
        }
    
        header {
            height: 6vh;
            
        }

        
        
        .intro{ 
            margin-top: 6rem;
            .main-message{
                max-width: 800px;                

                h1{
                    font-size: 3rem;
                }
                
                h3{                    
                    font-size: 1.2rem;  
                }

                p{
                    font-size: 1.2rem;                    
                }

            }

            .centered-image{
                width: 80%;
                height: 80%;
                max-height: 50%;
                object-fit: cover;                
            }
        }
        
        .features{
            
            h2{
                font-size: 2.5rem;                
                max-width: 800px;
                line-height: 1.1;    
            }

            .subtitle-features{
                font-size: 1.2rem; 
                max-width: 600px;
            }
            
            .card-title{
                font-size: 1.2rem;
            }
        }

        .advantages{
            .subtitle-advantages{
                font-size: 1.2rem;
                max-width: 600px;
            }

            h2{
                font-size: 2.5rem;            
                line-height: 1.1;
                max-width: 800px;
            } 
            
            h3{                    
                font-size: 1.2rem;  
            }

        }  
        
        .saveurs{
            h2{
                font-size: 2.5rem;            
                line-height: 1.1;
                max-width: 800px;
            } 

            p{                    
                font-size: 1.2rem;
                max-width: 600px;  
            }

        }

        .final{
            .final-message{
                h2{
                    font-size: 2.5rem;            
                    line-height: 1.1;
                    max-width: 800px;                
                } 

                p{                    
                    font-size: 1.2rem;
                    max-width: 600px;  
                }
            }    
        }
            
        .savoir-plus{
            h2{
                max-width: 600px;
                font-size: 2rem;
            }
        }    
        
        .contact-info{
            p{
                max-width: 600px;
                font-size: 1.2rem;
            }
        }

    }
