* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Cormorant Garamond", serif;
  color: #2d4532;
}

.invitation-container {
  perspective: 1000px;
}

.card {
  background: url("../assets/fondo_invitacion.jpg") no-repeat center center;
  background-size: cover;
  width: 380px;
  height: 760px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}

.content {
  text-align: center;
  margin-top: 40px;
}

.header-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 20px;
}

.script-gold {
  font-family: "Great Vibes", cursive;
  color: #b59410;
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1;
}

.name {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 35px;
  line-height: 1.1;
}

.celebration-title {
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 30px;
}

.event-details {
  margin-bottom: 60px;
}
.event-details .date {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.event-details .time {
  font-size: 1.1rem;
}

.footer-info {
  position: absolute;
  bottom: 150px;
  left: 0;
  right: 0;
  padding: 0 45px;
}
.footer-info .presence-note {
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  line-height: 1.6;
  font-weight: 400;
}

.music-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #b59410;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  z-index: 100;
}
.music-btn:hover {
  transform: scale(1.1);
}

.name {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.name .shine {
  position: relative;
  display: inline-block;
}
.name .shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.name:hover .shine::after,
.shine-active .shine::after {
  animation: shine-anim 2s infinite;
}

@keyframes shine-anim {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fbf9f4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}
.overlay .overlay-content {
  text-align: center;
}
.overlay .overlay-content #start-btn {
  margin-top: 20px;
  padding: 15px 30px;
  background: #b59410;
  color: white;
  border: none;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*# sourceMappingURL=style.css.map */
