@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap');

body {
  font-family: 'Inria Serif', serif;
  background-color: #ece5cc;
  color: #252323;
  margin: 0;
  padding: 20px;
}

h1, h2, h3 {
  text-align: center;
  color: #5c483a;
  margin-bottom: 30px;
  font-weight: bold;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px;
  background-color: #fff8ee;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.detail-enchere-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.detail-image {
  flex: 1;
  background-color: #f4e9d9;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.detail-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 4px solid #bfa88b;
}

.detail-texte {
  flex: 1;
  min-width: 300px;
}

.titre-enchere {
  font-size: 2em;
  color: #5c483a;
  margin-bottom: 20px;
}

p {
  font-size: 1.05em;
  line-height: 1.6;
  color: #463c33;
}

.description-bloc {
  margin-top: 20px;
  background-color: #fef9f1;
  padding: 20px;
  border-left: 5px solid #d4b89f;
  border-radius: 10px;
}

.description-bloc h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #5c483a;
}

.participer {
  text-align: center;
  margin-top: 30px;
}

.participer .btn {
  background-color: #5c483a;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1em;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.participer .btn:hover {
  background-color: #3d3027;
}

.liste-offres {
  margin-top: 40px;
  background-color: #fffaf4;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  overflow-x: auto;
}

.liste-offres table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fdf9f4;
}

.liste-offres thead {
  background-color: #f2e5d6;
}

.liste-offres th, .liste-offres td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #e6dbcf;
  color: #4e3b2e;
}

.liste-offres tbody tr:hover {
  background-color: #f8f2ea;
}

.liste-offres td:first-child {
  font-weight: bold;
  font-size: 1.1em;
  color: #7e5a45;
}

.gagnant-enchere {
  margin-top: 30px;
  padding: 15px;
  background-color: #f7f4ec;
  border: 1px solid #d8c7b4;
  border-radius: 12px;
  font-size: 1.1em;
  color: #3e2f1c;
  text-align: center;
  font-weight: bold;
}

.trophee-gagnant {
  text-align: center;
  font-size: 3.5rem;
  margin-top: 20px;
  animation: zoomTrophy 1.5s ease-in-out;
}

@keyframes zoomTrophy {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.retour-enchere {
  margin: 30px 0;
  text-align: left;
}

.retour-enchere a {
  text-decoration: none;
  font-size: 1em;
  color: #5c483a;
  font-weight: bold;
  background-color: #f2e7dc;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease;
}

.retour-enchere a:hover {
  background-color: #e5d4c1;
}
