/* ========================================
   DJ COUVERTURE - Pages Prestations
======================================== */

/* ========================================
   HERO PRESTATION
======================================== */
.prestation-hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.prestation-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.prestation-hero:hover .prestation-hero-bg {
  transform: scale(1.08);
}

.prestation-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(155, 21, 21, 0.6) 60%,
    rgba(10, 10, 10, 0.75) 100%
  );
}

.prestation-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  max-width: 750px;
  margin-left: 5%;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--rouge-clair); }

.breadcrumb span {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.85rem;
}

.breadcrumb span:last-child {
  color: #ffffff !important;
  font-weight: 600;
}

.prestation-hero h1 {
  font-size: 3.8rem;
  color: var(--blanc);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.prestation-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 640px;
}

/* ========================================
   CONTENU PRINCIPAL
======================================== */
.prestation-content {
  padding: 80px 0;
}

.prestation-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* Sections texte */
.prestation-section {
  background: var(--blanc);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  border-left: 4px solid var(--rouge);
  transition: box-shadow 0.3s, transform 0.3s;
}

.prestation-section:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  transform: translateX(4px);
}

.prestation-section h2 {
  font-size: 1.5rem;
  color: var(--noir);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--rouge);
  color: var(--blanc);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.prestation-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* ========================================
   SIDEBAR
======================================== */
.prestation-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-cta {
  background: var(--noir);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rouge);
}

.sidebar-cta h3 {
  font-size: 1.2rem;
  color: var(--blanc);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sidebar-services {
  background: var(--blanc);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
}

.sidebar-services h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gris);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--rouge);
  display: inline-block;
}

.sidebar-services ul {
  list-style: none;
}

.sidebar-services ul li {
  border-bottom: 1px solid var(--gris-clair);
}

.sidebar-services ul li:last-child { border-bottom: none; }

.sidebar-services ul li a {
  display: block;
  padding: 9px 0;
  color: var(--gris-fonce);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.sidebar-services ul li a:hover {
  color: var(--rouge);
  padding-left: 6px;
}

/* ========================================
   CARDS LIÉES
======================================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  background: var(--blanc);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}

.related-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--rouge-fonce);
  transition: transform 0.5s;
}

.related-card:hover .related-img {
  transform: scale(1.05);
}

.related-body {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.related-body h3 {
  font-size: 1rem;
  color: var(--noir);
  font-weight: 600;
}

.related-link {
  color: var(--rouge);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ========================================
   CTA FINAL
======================================== */
.prestation-cta-final {
  background: linear-gradient(135deg, var(--noir) 0%, #2d1515 50%, var(--rouge-fonce) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.prestation-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(196,30,30,0.04) 40px,
    rgba(196,30,30,0.04) 41px
  );
}

.prestation-cta-final .container { position: relative; z-index: 1; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .prestation-grid {
    grid-template-columns: 1fr;
  }
  .prestation-sidebar {
    position: static;
  }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .prestation-hero h1 { font-size: 2.4rem; }
  .prestation-hero-content { margin-left: 0; }
  .prestation-section { padding: 1.5rem; }
  .prestation-section h2 { font-size: 1.2rem; }
  .related-grid { grid-template-columns: 1fr; }
}
