/*
Theme Name: Signature
Theme URI: https://example.com/signature
Author: Your Name
Author URI: https://example.com
Description: A luxury real estate WordPress theme using ACF.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: signature
*/

/* Custom styles for Signature Theme */
/* --- Search Popup Overlay --- */
.search-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  padding: 40px 15px;
}

/* Active (visible) state */
.search-lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

/* Popup content */
.search-lightbox-content {
  background: #fff;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
  opacity: 0;
  animation: slideUp 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  to { transform: translateY(0); opacity: 1; }
}

/* Close button */
.search-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #555;
  transition: color 0.2s;
}
.search-close:hover {
  color: #000;
}