/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 04 2026 | 17:35:11 */
/* BASE */
body {
  margin: 0;
  /*overflow: hidden;*/
}

/* POPUP OVERLAY */
#music-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

/* VOLETS */
.door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: url("https://meirethanna.com/wp-content/uploads/2026/02/bg_paper.png");
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 1.2s ease-in-out; /* Animation fluide */
  z-index: 2;
}

.door-left {
  left: 0;
  background-position: left center;
}

.door-right {
  right: 0;
  background-position: right center;
}

/* OUVERTURE DES PORTES - Effet coulissant fluide */
#music-popup.opening .door-left {
  transform: translateX(-100%);
}

#music-popup.opening .door-right {
  transform: translateX(100%);
}

/* CONTENU CENTRAL */
.popup-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  transition: opacity 0.5s ease;
}

#music-popup.opening .popup-content {
  opacity: 0;
}

/* TEXTE DORÉ */
.golden-text {
  background: linear-gradient(45deg, #BA8C45, #EAD9A0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* LOGO */
.popup-content img.logo {
    max-width: 380px;
    margin-bottom: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    animation: fadeInScale 0.8s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* TITRE */
.title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BOUTON */
button {
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #D4B56E, #BA8C45);
  color: #fff;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(212, 181, 110, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button:hover::before {
  width: 400px;
  height: 400px;
}

button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 181, 110, 0.7);
  border-color: rgba(255,255,255,0.6);
}

button:active {
  transform: translateY(-1px) scale(1.02);
}

/* DISPARITION COMPLÈTE */
#music-popup.hidden {
  opacity: 0;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .title {
    font-size: 38px;
    margin-bottom: 30px;
  }
  
  .popup-content img.logo {
    max-width: 260px;
    margin-bottom: 60px;
  }
  
  button {
    padding: 15px 35px;
    font-size: 16px;
  }
}