@import url("contactos.css");

.reserve-stack {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(2.5rem, 8vw, 4rem) 5vw;
  margin-top: 10rem;
}

.reserve-module {
  width: 100%;
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 0.65rem;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

body.reserve-page .contact-card {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  gap: 1.5rem;
}

.covermanager-frame {
  width: 100%;
  min-height: 610px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
}

.covermanager-fallback {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.covermanager-fallback a {
  color: var(--accent);
  text-decoration: underline;
}

.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .reserve-stack {
    margin-top: 2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reserve-page .reserve-module {
    animation: reserveModuleGlow 11s ease-in-out infinite;
  }

  .reserve-page .covermanager-frame {
    animation: reserveFrameDrift 30s ease-in-out infinite;
  }
}

@keyframes reserveModuleGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  }
  50% {
    border-color: rgba(232, 146, 60, 0.6);
    box-shadow: 0 35px 70px rgba(232, 146, 60, 0.35);
  }
}

@keyframes reserveFrameDrift {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01) translateY(-2px);
  }
}
