@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Girassol&family=Poppins:ital,wght@0,200;0,300;0,500;1,300;1,700&family=Roboto:wght@400;500;700&display=swap');
*{
margin: 0;
padding: 0;
}

/* .nav{
    height: 100px; */
/* } */
.navbar-custom{
    /* Couleur orange citrouille semi-transparente */
   background:#e3d9d1
}

.nav-link {
    /* font-size: 1.2rem; Ajustez cette valeur selon votre préférence. */
    color: #4D4D4D;  /* Noir plus clair pour les liens non actifs */
  }
  
  .nav-link.active {
    color: #000000;  /* Noir pour le lien actif */
  }
.dropdown-item{
    color: #000000;
}

.dropdown-menu .dropdown-item:hover{
    background: orange;
}
.navbar-item{
    font-size: 1rem; /*Ajustez cette valeur selon votre préférence.*/
}

.navbar-shrink {
    /* Ajuste la hauteur ou tout autre style */
    height:100px;
  }
  
  .logo-shrink {
    /* Réduis la taille du logo */
    height: 80px;
    width: auto;
  }
  /* .transparent-bg {
    background-color: rgba(255, 165, 0, 0.5);  */
    /* Couleur orange citrouille semi-transparente */
/* } */

.customL{
    position: relative;
    justify-content: start;
    width: 80px;
    height: 80px;
}
.div-banner{
    width: 100%;
    height: 300px;    
}

.div-banner img{
    object-fit:cover;
    width: 100%;
    height: 300px;
}

.container.my-5 {
    flex: 1;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e3d9d1;
    display: none; /* Masquer initialement */
    border-radius: 50%;
  }

#backToTop i{
    font-size: 20px;
    color: black;
}

.fixed-top{
    position: absolute;
    top: 150px;
}
.title-custom{
    position: absolute;
    z-index: 1;
    top: 220px;
    left: 25%;
    right: 25%;
    letter-spacing: 2px;
}

.title-custom-show{
    position: absolute;
    text-align: center;
    z-index: 8;
    top: 220px;
    left:21%;
    right: 25%;
    /* bottom: 45%; */
    letter-spacing: 2px;
    text-emphasis:filled circle;
    text-emphasis-position: under;
}

.btnRecipe{
    color:rgb(48, 252, 21);
   border: solid 1px;
   transition: all 0.2s ease
}

.btnRecipe:hover{
    border: 2px solid black ;
    color: rgba(248, 181, 58, 0.772);
    background-color: rgb(65, 130, 65);
}

.btnUserEditForm{
    display: flex;
    flex-direction: coloumn;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border: solid 1px rebeccapurple;
}

.cardCustom{
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
    background-color: #d7c2a5;
    margin: 35px;
}

.card-img-top {
    max-height: 280px; /* Hauteur maximale de l'image */
    object-fit:cover; /* Pour garder les proportions de l'image */
  }
  


.cardBody{
    background-color: #d7c2a5;
}

.card-title{
    font-family: 'poppins', sans-serif;
}
ul{
    text-decoration: none;
}

ul li{
    list-style: none;
}

/* footer{
    position:absolute;
    bottom: 0;
    width: 100%;
} */

.loginForm{
    margin-bottom: 9vh;
}
.footer-custom{
    height: 100px;
    position: absolute;
    bottom: auto;
    background-color: #e3d9d1;
    /* flex-shrink: 0; */
}

/* Styles ajustés pour les petits écrans */
@media (max-width: 768px) {
    .navbar-toggler{
        border-color: #000000;
    }

    .navbar-toggler-icon {
        filter: invert(0) grayscale(100%) brightness(0);
        width: 15px;
        height: 15px;
    }
    .customL {
        width: 50px;  /* Ou une autre taille qui te convient */
        height: auto;
    }
    .cardCustom{
        box-shadow: 0 6px 8px rgba(0,0,0,0.2);
        background-color: #d7c2a5;
        margin: auto;
        width: auto;
    }
    
    .card-img-top {
        max-height: auto; /* Hauteur maximale de l'image */
        object-fit:cover; /* Pour garder les proportions de l'image */
      }
      
    .cardBody{
        background-color: #d7c2a5;
    }
    
    .card-title{
        font-family: 'poppins', sans-serif;
    }

    /* .card-footer{
        margin: 0;
    } */
    .title-custom-show{
       font-size: 1.5rem;
       position: absolute;
       top: 180px;
       left: 5%;
       right: 5%;
       z-index: 25;
    }

    /* .footer-custom{
        position: fixed;
        bottom: auto
    } */
    
}