/* Couleurs */
:root {
    --dark: #000814; 
    --dark-blue: #001d3d;
    --blue: #003566;
    --dark-yellow: #FFC300;
    --yellow: #FFD60A;
    --light: #F3F4F6;
    --white: #fff;
}

/* Classe CSS fond */

.bg-dark {
    background-color: var(--dark);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-dark-yellow {
    background-color: var(--dark-yellow);
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-light {
    background-color: var(--light);
}

.bg-white {
    background-color: var(--white);
}

/* Classe CSS texte */
.text-dark {
    color: var(--dark);
}

.text-dark-blue {
    color: var(--dark-blue);
}

.text-blue {
    color: var(--blue);
}

.text-dark-yellow {
    color: var(--dark-yellow);
}

.text-yellow {
    color: var(--yellow);
}

.text-light {
    color: var(--light);
}

.text-white {
    color: var(--white);
}

.is-title-hero {
    text-align: center;
    paint-order: stroke fill;
    text-shadow: 0.1em 0.1em 4px rgb(0, 0, 0);
    -webkit-text-stroke: 0.05em black;
}

.is-subtitle-hero {
    text-align: center;
    text-shadow: -1px -1px  #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.is-h1 {
    font-weight: 700;
    font-size: 48px;
    font-family: Oswald;
}

.is-h2 {
    font-weight: 700;
    font-size: 36px;
    font-family: Oswald;
}

.is-h3 {
    font-weight: 600;
    font-size: 24px;
    font-family: Roboto;
}

.is-h4 {
    font-weight: 600;
    font-size: 18px;
    font-family: Roboto;
}

.is-p {
    font-weight: 400;
    font-size: 14px;
    font-family: Roboto;
}

.is-p-mini {
    font-weight: 700;
    font-size: 10px;
    font-family: Roboto;
}


/* Navbar */

.nav-bar {
    position: sticky;
    top: 0;
    box-sizing: border-box;
    width: 100%;
    height: 97px;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    flex-shrink: 0;
    transition-property: backdrop-filter;
    transition-duration: 200ms;
}

.logo-placeholder:hover {
    backdrop-filter: brightness(75%);
}

.logo {
    width: 81px;
    height: 81px;
    border-radius: 100%;
    margin-right: 8px;
}

.profile-placeholder {
    height: 100%;
    width: 234.083px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.profile {
    height: 81px;
    width: 81px;
    border-radius: 100%;
    background-image: url(../image/PFP.png);
    background-size: cover;
}


.pfp-link {
    display: block;
    height: 81px;
    width: 81px;
    border-radius: 100%;
    transition-property: backdrop-filter;
    transition-duration: 200ms;
}

.pfp-link:hover {
    backdrop-filter: brightness(75%);
}

.pfp {

    height: 81px;
    width: 81px;
    border-radius: 100%;
}

/* Menu Déroulant */
.dropdown-no-bulma {
    height: 100%;
}

.dropbtn {
    height: 100%;
    padding-right: 10px;
    padding-left: 10px;
    transition-property: backdrop-filter;
    transition-duration: 200ms;
}

.arrow {
    transition: transform 200ms;
}


.flip {
    transform: rotateX(180deg);
}

.dropbtn:hover {
    backdrop-filter: brightness(75%);
}

.dropdown-contenu {  
    display: none;
    position: absolute;
    width: 100%;
    height: calc(100% - 97px);
    left: 0;
}

.categories {
    height: 100%;
    display: flex;
    align-items: flex-start;
}
.no-display {display:none}

.categorie {
    width: 450px;
    height: 70px;
    border-radius: 30px;
    border: 1px solid #000814;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
  }

  .first-categorie {
    margin: 0;
  }

  .colonne-categorie a {
    display:flex;
    width: 450px;
    height: 70px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    justify-self: center;
    margin-top: 30px;
  }
 
  .categorie-button {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transition-property: backdrop-filter;
    transition-duration: 200ms;
  }
 
  .categorie-button:hover {
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(60%);
 
  }

 
  .actualite {
    background-image: url(../image/bannière/actualite-banner.jpg);
    background-size: cover;
    background-position: center;
  }
 
 
 
 
  .art {
    background-image: url(../image/bannière/art-banner.png);
    background-size: cover;
    background-position: center;
  }
 
  .cinema {
    background-image: url(../image/bannière/cinema-banner.png);
    background-size: cover;
    background-position: center;
  }
 
  .jeux {
    background-image: url(../image/bannière/jeux-banner.png);
    background-size: cover;
    background-position: center;
  }
 
  .loisir-creatif {
    background-image: url(../image/bannière/loisir-creatif-banner.png);
    background-size: cover;
    background-position: center;
  }
 
  .musique {
    background-image: url(../image/bannière/musique-banner.jpg);
    background-size: cover;
    background-position: center;
  }
 
  .nature {
    background-image: url(../image/bannière/nature-banner.jpg);
    background-size: cover;
    background-position: center;
  }
 
  .science {
    background-image: url(../image/bannière/science-banner.png);
    background-size: cover;
    background-position: center;
  }
 
  .sport {
    background-image: url(../image/bannière/sport-banner.jpg);
    background-size: cover;
    background-position: center;
  }
 
  .technologie {
    background-image: url(../image/bannière/technologie-banner.png);
    background-size: cover;
    background-position: center;
  }

.show {display: block;}



.footer-no-bulma {
    width: 100%;
    height: 250px;
}

footer .column {
    display: flex;
}
.columns-footer {
    height: 100%;
    width: 100%;
    margin: 0;
}

.column-footer {
    width: 100%;
    height: 100%;
}

.column-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-footer {
    height: 220px;
    width: 220px;
}

.logo-placeholder-footer {
    display: flex;
    align-items: center;
}
.column-ressource {
    width: 100%;

}

.column-ressource-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.column-ressource-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.column-infos {
    display: flex;
    align-items: center;
    justify-content: center;
}
.info {
    padding: 0;
}

 .cartes-horizontales {
   justify-items: center;
     display:list-item;
     margin: 50px 0;
   }
   
   
   .carte-horizontale {
      width: 950px;
      height: 200px;
      background-color: var(--blue);
      padding: 1.25rem;
      border-radius: 15px;
      margin: 40px 0;
   }
   
   
   .icon-card {
   width: 150px;
   height: 150px;
   margin-top:10px;
   }
   
   .card-img {
    border-radius: 50%;
   }
   
   
   .tag-card {
      padding: 0 15px;
      height: 27px;
      text-align: center;
      border-radius: 100px;
   }
   
   
   
   
   .button-card {
       padding: 15px 20px;
      border-radius: 15px;
   }

    .go-to-link {
    float: left;
    background-color: var(--yellow);
    border-radius: 15px;
 }

.bouton {
width: 100%;
padding: 15px 20px;
border-radius: 15px;
transition-property: backdrop-filter;
transition-duration: 200ms;
 }
 
 .bouton:hover {
    backdrop-filter: brightness(75%);
 }