  body {
            font-family: Arial, 'Franklin Gothic Medium', 'Arial Narrow', sans-serif;
            margin: 0;
            padding: 0px;
        }

        /* Navbar styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color:orangered;
            color: white;
            font-size: medium;
            display: flex;
            justify-content: center;
            padding: 10px;
            padding-top: 0px;
            padding-bottom: 0px;
        }

        @media (max-width: 769px){
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: red;
            color: white;
            font-size: medium;
            display: flex;
            justify-content: left;
            padding: 10px;
            padding-top: 0px;
            padding-bottom: 0px;
        }
    }

        .navbar a {
            font-size: larger;
            color: white;
            text-align: left;
            padding: 14px;
            text-decoration: none;
        }

        .dropdown {
            position: relative;
        }

        .dropdown .dropbtn {
            font-size: larger;
            color: white;
            background-color: inherit;
            border: none;
            padding: 14px;
        }

        .navbar a:hover, .dropdown:hover .dropbtn {
            background-color: green;
        }

        /* Dropdown menu */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: green;
            min-width: 200px;            
            z-index: 1;
        }

        .dropdown-content a {
            color: white;
            padding: 16px 16px;
            text-decoration: none;            
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #8fc563;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Mobile styles */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 30px;
            color: white;
            cursor: pointer;
        }

        @media (max-width: 769px) {
            .navbar a {
                display: none;
            }
            .dropbtn {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.158);
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                text-align: left;
            }
            .nav-menu {
    z-index: 9999;
    position: absolute; /* ou fixed */
}


            .nav-menu a {
                color:white;
                padding: 10px;
                text-decoration: none;
                display: block;
            }

            .nav-menu a:hover {
                background-color: #555;
            }

            .nav-menu.show {
                display: flex;
            }
        }

        @media (max-width: 768px) {
    .content h4 {
        font-size: 20px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
  .content {
    min-height: 40vh !important;
    height: 40vh !important;
    padding: 10px !important;
    font-size: 20px !important;
  }
}


        .content {
        position: relative;
        z-index: 1;
        background-image: -webkit-linear-gradient(orangered, yellow); /* Safari, Chrome */
background-image: -moz-linear-gradient(orangered, yellow);    /* Firefox */
background-image: -o-linear-gradient(orangered, yellow);      /* Opera */
background-image: linear-gradient(orangered, yellow);  
        text-align: center;
        padding: 20px;
        color: orangered;
        font-size: 40px;
        width: 100vw; /* Occupe 100% de la largeur visible */
        min-height: 100vh;
               
    } 

    /* Cacher le logo desktop sur mobile */
.logo-desktop {
  display: flexbox;
  
 
}
.logo-mobile {
  display: none;
}

@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 10px auto;
  }
}

.tracking-expand {
        font-size: 2em;
        letter-spacing: 0em; /* Espacement initial des lettres */
        display: inline-block;
        transition: all 0.3s ease-in-out;
        animation: trackingExpand 1s forwards;
        text-align: center; /* Centrer le texte à l'intérieur de l'élément */
    }
    .tracking-expand {
margin: 0; /* Élimine les marges supplémentaires */
padding: 0;
}


    @keyframes trackingExpand {
        0% {
            letter-spacing: 0em;
            transform: scale(1);
        }
        50% {
            letter-spacing: 0.1em;
        }
        100% {
            letter-spacing: 0.2em;
            transform: scale(1.1);
        }
    }
