/* Age restriction modal - Glamour Dine House */

.gdh-age-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.gdh-age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 215, 128, 0.14), rgba(0, 0, 0, 0.95));
}

.gdh-age-modal__content {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin: 1.5rem;
  z-index: 1;
}

.gdh-age-modal__inner {
  background: radial-gradient(circle at top, #1b1015 0, #050308 60%, #020206 100%);
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 215, 128, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  padding: 1.6rem 1.7rem 1.5rem;
  color: #f7f0e3;
}

.gdh-age-modal__title {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffdf8a;
}

.gdh-age-modal__text {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e2d5c0;
}

.gdh-age-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gdh-age-modal__btn {
  flex: 1 1 8rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.08s ease;
}

.gdh-age-modal__btn--primary {
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.36), rgba(255, 202, 120, 0.25) 50%, rgba(0, 0, 0, 0.85) 100%);
  color: #1a0d08;
  border-color: #ffdf8a;
}

.gdh-age-modal__btn--secondary {
  background: transparent;
  color: #f3eadc;
  border-color: rgba(255, 215, 128, 0.45);
}

.gdh-age-modal__btn:hover {
  transform: translateY(-1px);
}

.gdh-age-modal__btn--primary:hover,
.gdh-age-modal__btn--primary:focus-visible {
  background: radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.58), rgba(255, 202, 120, 0.4) 55%, rgba(0, 0, 0, 0.9) 100%);
}

.gdh-age-modal__btn--secondary:hover,
.gdh-age-modal__btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.gdh-age-modal__btn:focus-visible {
  outline: 2px solid #ffdf8a;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .gdh-age-modal__inner {
    padding: 1.4rem 1.3rem 1.3rem;
  }

  .gdh-age-modal__title {
    font-size: 1.15rem;
  }

  .gdh-age-modal__actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gdh-age-modal__btn {
    transition: none;
  }
}
