/*
Lucas Blaser
stylegenerale.css
Style principale du site
Dernière modification : 13.01.2026 : Création du commentaire
*/
body {
        font-family: Arial, Helvetica, sans-serif;
        margin: 0%;
        
}

header {
        background-image: url("../image/en-tete/Freeski.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;


        height: 250px;

        color: aliceblue;
        font-size: 250%;
        padding: 70px;
      display: flex;
      flex-direction: column;
      align-items:flex-end ;

.titre-header{
        display: flex;
        align-items: center;
        justify-content: end;
        
}

nav{
        display: flex;
        justify-content: space-around;

        background-color: rgba(255, 255, 255, 0.205);
        width: 50%;
        
        
        
}

nav>a{
        display: flex;
        justify-content: center;
        width: 20%;
}

nav>a:hover{
       background-color: rgba(100, 86, 86, 0.74);
       width: 20%;
}

.active{
        background-color: rgba(100, 86, 86, 0.74);
}

}

footer {
        background-color: black;
        color: aliceblue;
        display: flex;
}

.contener_footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 900px;
        height: 200px;
}

a:link {
        text-decoration: none;

}

a {
        color: aliceblue;
}

.ski {
        display: flex;
        justify-content: space-around;
        align-content: center;
        padding-top: 20px;
}

.logo {
        width: 3.5vw;
        height: auto;
}

@media (max-width: 800px) {

          header {
            flex-direction: column;
            align-items: center;
            background-image: url("../image/en-tete/Freeski-natel.jpg");
            height: 350px;
          }
         
          .logo {
            width: 90px;
            padding-bottom: 30px;
          }
          nav {
            flex-wrap: wrap;
            flex-direction: column;
                align-items: center;
          }

          .ski{
                flex-direction: column;
                align-items: center;
          }
          
        }