/*CONTAINER*/
body{
	background-color: #262626;
}
html, body{
    min-height: 100vh; /* Assure que le body prend toute la hauteur */
}

/*TYPOGRAPHIE*/
h1{
	font-family: "Cinzel", serif;
	font-size: 48px;
}
h2{
	font-family: "Cinzel", serif;
	font-size: 34px;
}
h3{
	font-family: "Cinzel", serif;
	font-size: 20px;
}
h4{
	font-family: "Cinzel", serif;
	font-size: 18px;
}
p{
	font-family: "Quicksand", sans-serif;
	font-size: 16px;
}
ul li {
	font-family: "Quicksand", sans-serif;
}
/*COMPOSANTS*/
button{

}
/*COULEURS*/
.gold{
	color: #A87D36;
}
.jumbotron{
	padding: 5rem 3rem;
	background-color: black;
    background-image: url(../img/fond.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.jumbotron2{
    padding: 5rem 3rem;
    background-color: black;
    background-image: url(../img/fond-3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  justify-content: center;
  padding: 20px;
  }
.gallery-item {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.footer {
    background-color: black;
    color: white;
    padding: 40px 0 0 0 ; /* Ajoute de l'espace en haut et en bas */
    position: relative;


}
.footer-bottom {
    background-color: #a67c35;
    padding: 10px 0;
    color: white;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}
.footer-logo img {
    max-height: 80px;
}
.footer-social a {
    color: #a67c35;
    text-decoration: none;
    font-size : 30px
}
.prix{
  font-size: 28px;
  font-family: "Cinzel";
  font-weight: bolder;
  margin-bottom: 0;
}
.borderPrice{
  border: solid white 1px; 
  padding: 30px;
  background-color: black;
  border-radius : 20px;
  margin-bottom : 30px;
}
.product {
    width: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-lg, .btn-group-lg > .btn {
    border-radius: 0;
    margin: 20px 0;
}

ul li{
    padding-left : 0 !important;
    padding-right: 0 !important;
}
.nav-link.active {
    font-weight: 400;
    color: #ffffff !important; /* Couleur dorée pour la surbrillance */
    
}