/* ====== Global Styles ====== */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color:#002244;  /* dark blue background */
}

/* ====== Layout ====== */
.options-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content {
  text-align: center;
}

.container {
  border: 1px solid #ffffff62;
  padding: 20px;
  max-width: 70%;
  margin: 50px;
  border-radius: 25px;
}
.container:hover {
  background-color: #066dcecb;
  border-color: rgba(250, 235, 215, 0);
}

/* ====== Text Elements ====== */
h1 {
  margin: 10px;
  font-size: 18px;
  color: #f5ed7b;
}
p {
  margin: 10px;
  font-size: 16px;
  color: #ffffff;
}
strong {
  color: #ffffff;
}

/* ====== Buttons ====== */
.send-gift-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  gap: 30px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.send-gift-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ====== Icons ====== */
.material-icons {
  font-size: 15px;
  vertical-align: middle;
  color: #ffffff94;
}
.naira-icon {
  font-size: 18px;
  vertical-align: middle;
  color: #ffffff94;
}

/* ====== Back to Home ====== */
.back-to-home {
  text-align: center;
  margin-top: 20px;
  width: 100%;
}
.back-to-home a {
  text-decoration: none;
  color: #ebf374;
  font-weight: 600;
  transition: color 0.3s ease;
  cursor: pointer;
}
.back-to-home a:hover {
  color: #f5f3db;
}

/* Dark overlay (background) */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 26, 54, 0.897); /* dark overlay */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;   /* modal won’t exceed 400px */
  margin: 0 20px;     /* some breathing space on mobile */
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeIn 0.3s ease;
  position: relative;
}
.modal.show .modal-content {
  opacity: 1;
}
.modal-content input {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.modal-content button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #0a6cf1;
  color: #fff;
  cursor: pointer;
}
.modal-content button:hover {
  background: #084bb0;
}
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #444;
}

/* ====== Popup Styles (if needed elsewhere) ====== */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  max-width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
  text-align: left;
}
.close-btn {
  float: right;
  font-size: 20px;
  cursor: pointer;
}
.popup-content form {
  margin-top: 20px;
}
.popup-content label {
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 5px;
}
.popup-content input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.popup-content button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #002244;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.popup-content button:hover {
  background: #004080;
}

/* ====== Animation ====== */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
