/* ============================================================
   STYLE 1 : HOME CARD (Style actuel)
   ============================================================ */
.home-style-card {
  position: relative;
  display: block;
  border: none;
  border-radius: 35px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-decoration: none;
}

.home-style-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.home-style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-style-card:hover img {
  transform: scale(1.1);
}

.card-overlay-home {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
  z-index: 2;
}

.card-date-home {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.card-title-home {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: white;
}

.home-style-card:hover .card-title-home {
  color: white;
}

/* ============================================================
   STYLE 2 : SIGNATURE ELITE (Cadre Blanc / Galerie)
   ============================================================ */
.signature-card {
  position: relative;
  display: block;
  height: 500px;
  border-radius: 50px;
  overflow: hidden;
  border: 12px solid white;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #000;
  text-decoration: none;
}

.signature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: all 1.2s ease;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 2;
}

.signature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(59, 70, 255, 0.15);
}

.signature-card:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.signature-date {
  color: #27ae60;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.signature-title {
  color: white;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Barre verte animée en bas */
.signature-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 0%;
  background: #27ae60;
  transition: width 0.6s ease;
  z-index: 3;
}

.signature-card:hover .signature-progress-bar {
  width: 100%;
}

/* ============================================================
   STYLE 3 : CINEMATIC EDGE (Luxe & Poster)
   ============================================================ */
.cine-card {
  position: relative;
  display: block;
  height: 480px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}

.cine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.cine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  z-index: 2;
}

.cine-badge {
  width: fit-content;
  padding: 4px 14px;
  background: #3B46FF;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cine-title {
  color: white;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cine-line {
  width: 40px;
  height: 4px;
  background: #27ae60;
  transition: width 0.5s ease;
}

.cine-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  transform: scale(1.02);
}

.cine-card:hover img {
  transform: scale(1.1);
}

.cine-card:hover .cine-line {
  width: 100%;
}