@import url("https://fonts.cdnfonts.com/css/poppins");

:root {
  --light-yellow: #f9f6ee;
  --bg-color: #0d0d0d;
  --nav-scroll: #111111d3;
  --nav-menu-li: #bbbbbbcb;
  --span-highlight: #f40000;
  --nav-menu-active: #000000f0;
  --col-span: #9a9a9a;
}

/* Contact Popup Styling */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); 
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 9999;
}

.contact-popup.active {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  transform: translateY(0);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); /* Modern, soft shadow */
  animation: popupSlideUp 0.4s ease;
  position: relative;
  
}

@keyframes popupSlideUp {
  from {
    transform: translateY(30px); /* Slide up from below */
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--bg-color);
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.popup-content textarea {
  height: 120px;
  resize: vertical;
}

.popup-content button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.popup-content button:hover {
  background-color: #0056b3;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}


.status-message {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}

.status-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


