/* ===========================
   BETRIEBSFERIEN POPUP 
   =========================== */

/* Overlay */
.holiday-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.holiday-popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* Popup-Box */
.holiday-popup__content {
  background: #ffffff;
  padding: 34px 36px 32px;
  max-width: 460px;
  width: 92%;

  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

  text-align: center;
  position: relative;

  animation: popupFadeIn 0.35s ease;
}

/* Badge */
.holiday-badge {
  display: inline-block;
  background: rgba(79, 139, 255, 0.12);
  color: var(--clr-accent);

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Titel */
.holiday-popup__content h3 {
  margin-bottom: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr-accent);
}

/* Texte */
.holiday-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 10px;
}

.holiday-sub {
  font-size: 0.95rem;
  color: #555;
  margin-top: 6px;
}

/* Close Button */
.holiday-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;

  width: 36px;
  height: 36px;

  background: #f3f4f6;
  border: none;
  border-radius: 50%;

  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #444;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease, transform 0.2s ease;
}

.holiday-popup__close:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

/* Animation */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .holiday-popup__content {
    padding: 28px 24px;
  }

  .holiday-popup__content h3 {
    font-size: 1.6rem;
  }
}
