/**
 * Vacation Popup Styles
 * Include this CSS file on pages where you want the vacation popup
 */

/* Vacation Popup Overlay - shows by default */
#vacation-popup.vacation-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(4px);
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 10000 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Vacation Popup Styling */
#vacation-popup .vacation-popup {
  position: relative;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 3px solid #ff6f00;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(206, 206, 206, 0.467);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: slideIn 0.6s ease-out;
  transform: scale(1) !important;
  opacity: 1 !important;
}

#vacation-popup .vacation-popup h4 {
  font-family: 'Source Code Pro', sans-serif;
  color: #e65100;
  font-size: 2rem;
  margin: 0 0 1rem 0;
  font-weight: bold;
}

#vacation-popup .vacation-info p {
  font-family: Cabin, sans-serif;
  color: #351702;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0.8rem 0;
}

#vacation-popup .vacation-info p:first-child {
  font-weight: 600;
  margin-bottom: 1.2rem;
}

#vacation-popup .vacation-info p:last-child {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #d84315;
}

@keyframes slideIn {
  from {
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
#close-vacation-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #888;
  transition: color 0.3s ease;
  z-index: 1;
}

#close-vacation-popup:hover {
  color: #351702;
}

/* Mobile responsive */
@media (max-width: 600px) {
  #vacation-popup .vacation-popup {
    padding: 1.5rem;
  }

  #vacation-popup .vacation-popup h4 {
    font-size: 2rem;
  }

  #vacation-popup .vacation-info p {
    font-size: 1rem;
  }
}
