
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  min-height: 100vh;
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(Alwaax.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 2rem;
}

/* Header Styles */
header {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: white;
}

/* Main Content Styles */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.content {
  transform: translateY(0);
  opacity: 1;
  transition: all 1s ease;
}

.title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

/* Progress Bar Styles */
.progress-wrapper {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.progress-container {
  height: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: #90b8e0;
  border-radius: 9999px;
  transition: width 2s ease-out;
}

/* Button Styles */
.notify-button {
  background-color: #4a7aae;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.notify-button:hover {
  background-color: #3b6491;
  transform: scale(1.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notify-button:active {
  transform: scale(0.95);
}

/* Social Icons Styles */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

.modal-content {
  background-color: #4a7aae;
  width: 100%;
  max-width: 420px;
  border-radius: 0.5rem;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #1e293b;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-button:hover {
  color: black;
}

.notification-form {
  padding: 2rem;
}

.modal-title, .modal-subtitle {
  text-align: center;
  color: #1e293b;
  font-weight: bold;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-text {
  text-align: center;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-group input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.9);
  outline: none;
}

.form-group input[type="email"]:focus {
  box-shadow: 0 0 0 2px #1e293b;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.submit-button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 0.25rem;
  background-color: #1e293b;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #334155;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: white;
  color: #333;
  padding: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  max-width: 300px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background-color: #4caf50;
  color: white;
}

.toast.error {
  background-color: #f44336;
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeInUp 0.6s forwards;
}

.fade-up:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-up:nth-child(2) {
  animation-delay: 0.4s;
}

.fade-up:nth-child(3) {
  animation-delay: 0.6s;
}

.fade-up:nth-child(4) {
  animation-delay: 0.8s;
}

.fade-up:nth-child(5), .social-icons {
  animation-delay: 1s;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .title {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2.5rem;
  }
  
  .modal-content {
    width: 90%;
  }
}
