/*CSS for index.html*/

.logo {
    width: 150px; /* Réduit la taille du logo sur les petits écrans */
    height: auto;
}

/* Style pour le header et le menu burger */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    position: relative;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 10;
}

.line {
    height: 4px;
    background-color: white;
    border-radius: 2px;
}

/* Menu de navigation */
.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    display: inline-block;
}

.nav-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 8px 12px;
    transition: background-color 0.3s;
}

.nav-menu ul li a:hover {
    background-color: #555;
}

/* Menu mobile (caché par défaut) */
.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
}

.nav-menu.active {
    display: flex;
}

/* Media Query pour les écrans larges */
@media screen and (min-width: 768px) {
    .burger-menu {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
    }
}

/* Media Query pour les petits écrans (mobiles) */
@media screen and (max-width: 767px) {
    header {
        flex-direction: column; /* Empile les éléments en colonne */
        text-align: center; /* Centre les éléments */
    }

    .logo {
        width: 120px; /* Ajuste la taille du logo pour les petits écrans */
        margin-bottom: 20px; /* Ajoute un espace sous le logo */
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .nav-menu ul li {
        text-align: center;
        padding: 10px;
        width: 100%;
    }

    .nav-menu ul li a {
        padding: 14px;
        font-size: 18px;
    }

    .burger-menu {
        display: flex;
    }
}
body {
    font-family: 'Poppins';font-size: 22px;
    background-color: black;
    color: white;
    
.logo {
    width: 200px; /* largeur */
    height: 200px; /* hauteur */
}

/* Style pour le header et le menu burger */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333;
  color: white;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 10;
}

.line {
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu ul {
  list-style-type: none;
  display: flex;
}

.nav-menu ul li {
  display: inline-block;
}

.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 8px 12px;
  transition: background-color 0.3s;
}

.nav-menu ul li a:hover {
  background-color: #555;
}

/* Menu mobile (caché par défaut) */
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #333;
}

.nav-menu.active {
  display: flex;
}

@media screen and (min-width: 768px) {
  .burger-menu {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
  }
}

.content {
 text-align: center;




}
.pushable {
  position: relative;
  background: transparent;
  padding: 0px;
  border: none;
  cursor: pointer;
  outline-offset: 4px;
  outline-color: deeppink;
  transition: filter 250ms;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: hsl(226, 25%, 69%);
  border-radius: 8px;
  filter: blur(2px);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(
    to right,
    hsl(248, 39%, 39%) 0%,
    hsl(248, 39%, 49%) 8%,
    hsl(248, 39%, 39%) 92%,
    hsl(248, 39%, 29%) 100%
  );
}

.front {
  display: block;
  position: relative;
  border-radius: 8px;
  background: hsl(248, 53%, 58%);
  padding: 16px 32px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover {
  filter: brightness(110%);
}

.pushable:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.pushable:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}
/* From Uiverse.io by cssbuttons-io */ 
button {
 appearance: button;
 background-color: #1899D6;
 border: solid transparent;
 border-radius: 16px;
 border-width: 0 0 4px;
 box-sizing: border-box;
 color: #FFFFFF;
 cursor: pointer;
 display: inline-block;
 font-size: 15px;
 font-weight: 700;
 letter-spacing: .8px;
 line-height: 20px;
 margin: 0;
 outline: none;
 overflow: visible;
 padding: 13px 19px;
 text-align: center;
 text-transform: uppercase;
 touch-action: manipulation;
 transform: translateZ(0);
 transition: filter .2s;
 user-select: none;
 -webkit-user-select: none;
 vertical-align: middle;
 white-space: nowrap;
}

button:after {
 background-clip: padding-box;
 background-color: #1CB0F6;
 border: solid transparent;
 border-radius: 16px;
 border-width: 0 0 4px;
 bottom: -4px;
 content: "";
 left: 0;
 position: absolute;
 right: 0;
 top: 0;
 z-index: -1;
}

button:main, button:focus {
 user-select: auto;
}

button:hover:not(:disabled) {
 filter: brightness(1.1);
}

button:disabled {
 cursor: auto;
}

button:active:after {
 border-width: 0 0 0px;
}

button:active {
 padding-bottom: 10px;
}
  /* Style général du footer */
.footer {
    background-color: #333; /* Couleur de fond gris foncé */
    color: white; /* Couleur du texte blanc */
    padding: 200px 0; /* Espacement interne */
    text-align: center; /* Centrer le texte */
  font-size: 26px; 
}

/* Style du contenu du footer */
.footer-content {
    max-width: 1200px; /* Largeur maximale du contenu */
    margin: 0 auto; /* Centrer le contenu */
    display: flex; /* Utiliser flexbox pour aligner les éléments */
    justify-content: space-between; /* Espacer les éléments */
    align-items: center; /* Aligner les éléments verticalement */
    flex-wrap: wrap; /* Permettre le retour à la ligne des éléments */
}

/* Style des liens de navigation dans le footer */
.footer-nav ul {
    list-style: none; /* Supprimer les puces de la liste */
    padding: 0; /* Supprimer l'espacement interne */
    margin: 0; /* Supprimer la marge externe */
    display: flex; /* Utiliser flexbox pour aligner les éléments */
}

.footer-nav li {
    margin: 0 10px; /* Espacement entre les éléments de la liste */
}

.footer-nav a {
    color: white; /* Couleur des liens blanc */
    text-decoration: none; /* Supprimer le soulignement des liens */
    font-weight: bold; /* Texte en gras */
}

.footer-nav a:hover {
    color: #ff6347; /* Couleur des liens au survol */
}


 outline: none;
}
