/* ============================
   RECEPTIONS PAGE STYLES
   ============================ */

.receptions-page {
  background: var(--white);
}

/* ============================
   HERO SECTION
   ============================ */
.hero-receptions {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUpScroll 1s ease 1s forwards;
  transition: color 0.3s;
  z-index: 10;
}

.hero-scroll:hover {
  color: var(--gold);
}

.hero-scroll svg {
  animation: bounce 2s ease infinite;
}

@keyframes fadeInUpScroll {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

/* ============================
   PRESTATIONS SECTION
   ============================ */
.prestations-section {
  padding: 100px 0;
}

.prestation-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px;
  align-items: center;
}

.prestation-block:nth-child(odd) {
  background: var(--white);
}

.prestation-block:nth-child(even) {
  background: #fafafa;
}

.prestation-block.reverse {
  direction: rtl;
}

.prestation-block.reverse > * {
  direction: ltr;
}

/* Gallery */
.prestation-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  position: relative;
}

.gallery-main {
  position: relative;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prestation-block:hover .gallery-main img {
  transform: scale(1.05);
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery-stack img {
  width: 100%;
  height: calc(200px - 7.5px);
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prestation-block:hover .gallery-stack img:first-child {
  transform: scale(1.05);
  transition-delay: 0.1s;
}

.prestation-block:hover .gallery-stack img:last-child {
  transform: scale(1.05);
  transition-delay: 0.2s;
}

/* Content */
.prestation-content {
  padding: 20px 0;
}

.prestation-number {
  display: block;
  font-size: 80px;
  font-weight: 100;
  color: rgba(201,162,39,0.15);
  line-height: 1;
  margin-bottom: 10px;
  transition: color 0.5s ease;
}

.prestation-block:hover .prestation-number {
  color: rgba(201,162,39,0.3);
}

.prestation-title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 25px;
  position: relative;
}

.prestation-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.prestation-description {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 35px;
}

/* Actions */
.prestation-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-plaquette {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-plaquette:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-devis {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-devis:hover {
  background: #a01045;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  padding: 120px 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #b8922a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,162,39,0.3);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* ============================
   PLAQUETTE MODAL
   ============================ */
.plaquette-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.plaquette-modal.active {
  opacity: 1;
  visibility: visible;
}

.plaquette-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  text-align: center;
}

.plaquette-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s;
}

.plaquette-modal-close:hover {
  color: var(--gold);
}

.plaquette-viewer {
  max-height: 70vh;
  overflow: hidden;
}

.plaquette-viewer img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.plaquette-actions {
  margin-top: 30px;
}

.plaquette-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.plaquette-download:hover {
  background: #b8922a;
}

/* ============================
   RESPONSIVE - TABLET
   ============================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
    letter-spacing: 8px;
  }

  .prestation-block {
    gap: 50px;
    padding: 60px 40px;
  }

  .gallery-main img {
    height: 350px;
  }

  .gallery-stack img {
    height: calc(175px - 7.5px);
  }

  .prestation-title {
    font-size: 28px;
  }

  .prestation-number {
    font-size: 60px;
  }
}

@media (max-width: 900px) {
  .prestation-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 30px;
  }

  .prestation-block.reverse {
    direction: ltr;
  }

  .prestation-gallery {
    grid-template-columns: 2fr 1fr;
  }

  .gallery-main img {
    height: 300px;
  }

  .gallery-stack img {
    height: calc(150px - 7.5px);
  }

  .cta-content h2 {
    font-size: 32px;
    letter-spacing: 4px;
  }
}

/* ============================
   RESPONSIVE - MOBILE
   ============================ */
@media (max-width: 600px) {
  .hero-receptions {
    min-height: 500px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: 5px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-scroll {
    bottom: 30px;
  }

  .prestations-section {
    padding: 60px 0;
    overflow: hidden;
  }

  .prestation-block {
    padding: 50px 20px;
    gap: 30px;
  }

  .prestation-gallery {
    display: block;
  }

  .gallery-main {
    margin-bottom: 10px;
  }

  .gallery-main img {
    height: 200px;
    width: 100%;
  }

  .gallery-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-stack img {
    height: 120px;
    width: 100%;
    min-width: 0;
  }

  .prestation-number {
    font-size: 48px;
  }

  .prestation-title {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .prestation-description {
    font-size: 14px;
  }

  .prestation-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-plaquette,
  .btn-devis {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .cta-section {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .cta-content p {
    font-size: 14px;
  }
}
