/* Temporary André Rieu 2026 Reservation Popup */

body.rieu-popup-open {
  overflow: hidden;
}

.rieu-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rieu-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.rieu-popup-overlay[hidden] {
  display: none !important;
}

.rieu-popup {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.rieu-popup-overlay.is-visible .rieu-popup {
  transform: translateY(0) scale(1);
}

.rieu-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rieu-popup__close:hover {
  background: #fff;
  transform: scale(1.05);
}

.rieu-popup__image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.rieu-popup__body {
  padding: 24px 24px 28px;
}

.rieu-popup__title {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #12100F;
  line-height: 1.25;
}

.rieu-popup__text {
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.rieu-popup__dates {
  margin: 0 0 16px;
  padding-left: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

.rieu-popup__note {
  margin: 0 0 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #B96A2E;
}

.rieu-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rieu-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.rieu-popup__btn--primary {
  background: linear-gradient(135deg, #d4a017 0%, #e8b923 45%, #f0c940 100%);
  color: #1a1208;
  box-shadow: 0 4px 18px rgba(212, 160, 23, 0.45);
}

.rieu-popup__btn--primary:hover {
  background: linear-gradient(135deg, #e8b923 0%, #f0c940 50%, #f5d456 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.55);
}

.rieu-popup__btn--secondary {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.rieu-popup__btn--secondary:hover {
  background: #f8f8f8;
  color: #333;
}

@media (max-width: 767px) {
  .rieu-popup-overlay {
    padding: 16px;
  }

  .rieu-popup {
    max-width: 90vw;
  }

  .rieu-popup__body {
    padding: 20px 18px 24px;
  }

  .rieu-popup__title {
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rieu-popup-overlay,
  .rieu-popup {
    transition: none;
  }
}
