* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
}
.header {
  background: #000;
  color: white;
  padding: 15px 20px;
}
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}
#menu-toggle {
  display: none;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  .nav {
    width: 100%;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  #menu-toggle:checked + .menu-icon + .nav .nav-links {
    display: flex;
  }
  .nav-links li {
    margin: 10px 0;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}


.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}


/* Flèches Lightbox2 personnalisées */
.lb-nav a.lb-prev, 
.lb-nav a.lb-next {
  width: 40px !important; /* largeur flèche */
  height: 40px !important; /* hauteur flèche */
  background-size: contain !important; /* ajuste la taille */
  opacity: 0.8 !important; /* transparence */
}

.lb-nav a.lb-prev:hover, 
.lb-nav a.lb-next:hover {
  opacity: 1 !important; /* plus visible au survol */
}


.don-btn {
  display:inline-block;
  padding:10px 20px;
  background:#ff4b5c;
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  transition: background 0.3s;
}
.don-btn:hover {
  background:#ff2a3d;
}


.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.shop-item {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  color: white;
  text-align: center;
  padding-bottom: 15px;
}

.shop-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.buy-btn {
  background: #e11d48;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.buy-btn:hover {
  background: #be123c;
}

#cart-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #e11d48;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000;
}

#cart {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background: white;
  color: black;
  width: 300px;
  height: 100%;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  z-index: 2000;
}

.checkout-btn {
  display: block;
  background: gold;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  margin-top: 10px;
}

.years-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.year-card {
  background-size: cover;
  background-position: center;
  height: 200px; /* tu peux mettre min-height:200px si tu veux que toutes soient égales */
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.year-card:hover {
  transform: scale(1.05);
}

.gallery img {
  width: 100%;
  height: 200px; /* Ajustable selon ton goût */
  object-fit: cover;
  border-radius: 0.375rem; /* rounded-md */
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

