/* Boutons */
.btn-normal {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.btn-normal:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  border-color: #D4AF37;
}

.btn-highlight {
  background-color: #D4AF37;
  color: #2C2C2C;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: none;
}

.btn-highlight:hover {
  background-color: #B8962A;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #C59B27 25%, #E8D5A3 50%, #C59B27 75%, #D4AF37 100%);
  background-size: 200% 200%;
  color: #1A1A1A;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  animation: shimmer 3s ease infinite;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E8D5A3 0%, #D4AF37 25%, #C59B27 50%, #D4AF37 75%, #E8D5A3 100%);
  background-size: 200% 200%;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  animation: shimmer 1.5s ease infinite;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
  border-radius: 9999px;
}

.btn-gold:hover::before {
  left: 100%;
}

/* Hero section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  width: 100%;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 20;
}

.scroll-arrow {
  width: 3rem;
  height: 3rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: bounce-arrow 2s infinite;
}

.scroll-arrow:hover {
  border-color: #D4AF37;
  transform: translateY(5px);
}

.scroll-arrow svg {
  width: 1.2rem;
  height: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.scroll-arrow:hover svg {
  color: #D4AF37;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 1%;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: left;
  }
  .footer-nav {
  margin-left: 5rem;
}
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-logo {
    justify-content: flex-start;
  }
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #D4AF37;
  margin: 0;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-tagline {
    text-align: left;
  }
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-align: right;
}

@media (min-width: 768px) {
  .footer-title {
    text-align: left;
  }
}

/*.footer-nav {
  margin-left: 5rem;
}*/

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: #D4AF37;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0rem 0 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-links {
    text-align: left;
  }
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #D4AF37;
  padding-left: 5px;
}

.footer-contact {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-contact {
    text-align: left;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-contact-item {
    justify-content: flex-start;
  }
}

.footer-contact-item:hover {
  color: #D4AF37;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-social a:hover {
  background: #D4AF37;
  color: #1A1A1A;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Prestation card */
.prestations-section {
  padding: 1rem 0;
  background-color: var(--off-white);
}

.prestations-section::before {
  content: '';
  position: absolute;
  top: -0%;
  left: -0%;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 100%); */
  /* background-image: url('../../public/bg-prestation.png'); */
  /* background-size: cover; */
  /* background-attachment: fixed; */
  /* background-position: center; */
  /* animation: rotate 20s linear infinite; */
}

.prestations-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 4rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 2rem;
}

.prestations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .prestations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prestation-card {
  background: rgba(255, 255, 255, 0.479);
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  max-width: 100%;
}

.prestation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.prestation-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.prestation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prestation-card:hover .prestation-image {
  transform: scale(1.05);
}

.prestation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.prestation-card:hover .prestation-overlay {
  opacity: 0.95;
  background: linear-gradient(135deg, rgba(212,175,55,0.3) 0%, rgba(0,0,0,0.9) 100%);
}

.prestation-image-text {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  color: white;
  z-index: 5;
  text-align: left;
}

.prestation-image-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.prestation-image-subtitle {
  font-size: 0.65rem;
  opacity: 0.9;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.prestation-price-on-image {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #D4AF37 0%, #C59B27 100%);
  color: #1A1A1A;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  backdrop-filter: blur(2px);
}

.prestation-card:hover .prestation-price-on-image {
  transform: scale(1.05);
  background: linear-gradient(135deg, #E8D5A3 0%, #D4AF37 100%);
}

.prestation-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
  z-index: 3;
  pointer-events: none;
}

.prestation-card:hover .prestation-image-wrapper::before {
  left: 100%;
}

.prestations-signature {
  text-align: center;
  color: #ffffff;
  /* font-family: 'Playfair Display', serif; */
  font-style: italic;
  font-size: 1.125rem;
  width: 100%;
  display: block;
}

/* Section Ouverture */
.ouverture-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(212, 175, 55, 0.05) 100%);
  background-image: url('../../public/bg-ouverture.png');
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.ouverture-section::before {
  content: '';
  position: absolute;
  top: -0%;
  left: -0%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 255, 42, 0.03) 0%, transparent 100%);
  /* backgroundImage: "url('../../public/bg-ouverture.png')"; */
  /* background-image: url('../../public/bg-ouverture.png');
  background-size: cover; */
  /* background-attachment: fixed; */
  /* background-position: center; */
  animation: rotate 20s linear infinite;
}

.ouverture-card {
  background: white;
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.ouverture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px -20px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.ouverture-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2rem;
  color: var(--dark);
  line-height: 1; 
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .ouverture-title {
    font-size: 2.5rem;
  }
  .ouverture-card {
    padding: 3rem;
  }
}

.ouverture-description {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ouverture-decoration {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ouverture-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #D4AF37;
  border-radius: 50%;
  opacity: 0.5;
}

.ouverture-dot:nth-child(2) {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 1;
}

.ouverture-btn {
  background: linear-gradient(135deg, #D4AF37 0%, #C59B27 50%, #D4AF37 100%);
  background-size: 200% 200%;
  color: #1A1A1A;
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  animation: shimmer 3s ease infinite;
}

.ouverture-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  animation: shimmer 1.5s ease infinite;
}