/* Styles généraux */
body {
    background-color: #000000; 
}

h1 {
    font-family: 'ANCIENT', sans-serif;color:#ffffff;font-weight: 400;font: size 1000px;
}
h2 {
    font-family: 'ANCIENT', sans-serif;color:#ffffff;font-weight: 400;font-size: xx-large;
}
h3 {
    font-family: 'ANCIENT', sans-serif;color:#ffffff;font-weight: 400;font-size: xx-large;
}
ul {
    font-family: 'ANCIENT', sans-serif;color:#ffffff;font-weight: 400;font-size: x-large;
}
p {
    font-family: 'ANCIENT', sans-serif;color:#ffffff;font-weight: 400;font-size: xX-large;
}
b {
    font-family: 'ANCIENT', sans-serif;color:#ffffff;font-size: x-large;
}

a {
    font-family: 'ANCIENT', sans-serif;color:#ffffff;font-size: xx-large;text-decoration:none ;
}

section{
    font-family: 'ANCIENT', sans-serif;color:#ffffff
}
GLORY {
    font-family: 'ANCIENT', sans-serif;color:#ffffff;font-weight: 400;font-size: 100px;
}

header {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

li {
    color: #ffffff;
    text-decoration: dotted;font-size: xx-large;
}

main {
    padding: 20px;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-family: 'GOTH', sans-serif;
}
@font-face {
    font-family: 'GOTH';
    src: url('font/Vorname.woff2') format('woff2'),
        url('font/Vorname.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ANCIENT';
    src: url('font/Ancient\ Medium.woff2') format('woff2'),
        url('font/Ancient\ Medium.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.grid-produits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(570px, 470px));
    gap: 24px;
    padding: 20px;
    background: #000000;
}
.produit {
    background: #000000;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 8px #0000000d;text
}

.produit img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.produit .nom {
    font-size: xx-large;
    margin: 12px 0 8px 0;
    font-weight: bold;
    font-family: 'ANCIENT';
    color: #ffffff;
}
.produit .prix {
    color: #ffffff;
    font-size: x-large;
    font-family: 'ANCIENT';
    color: #ffffff;

}

.item {
    background-color: #000000;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    
  }
  .item img {
    max-width: 100%;
    border-radius: 6px;
    height: auto;
  }
  .item .name {
    margin-top: 8px;
    font-weight: bold;
    font-size: 1rem;
    color: #ffffff;
  }

  .art-item {
    width: 50%;
    background: rgb(0, 0, 0);
    border-radius: 8px;
    text-align: center;
    padding: 12px;
    position: relative;
  }
  .image-container {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto;
    overflow: hidden;
  }
  .image-container img {
    width: 700px;
    height: 700px;
    object-fit: cover;
    display: none;
    border-radius: 6px;
  }
  .image-container img.active {
    display: block;
  }
  .title {
    margin-top: 12px;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.4rem;
    font-family: 'ANCIENT';
  }
  .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(51,51,51,0.8);
    color: rgb(255, 255, 255);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 24px;
    user-select: none;
  }
  .btn-left {
    left: 6px;
  }
  .btn-right {
    right: 6px;
  }