* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Nunito', sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  /* background-color: #f7f7f7; */
  background: linear-gradient(to right, #f8f8f8, #e6e6e6);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.navbar .logo img {
  height: 100px;
  width: 100px;
  margin-right: 10px;
}
.navbar .logo span {
  font-size: 34px;
    font-weight: 700;
background: linear-gradient(263deg, #eca407, #330ae9);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 55px;
  font-weight: 700;
}

.navbar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s;
}
nav ul li a.active {
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  padding: 6px 12px;
  transition: background 0.3s;
}


.navbar ul li a:hover {
  color: #ff5722;
}

.navbar .auth {
  display: flex;
  gap: 15px;
  align-items: center;
}

.navbar .auth a {
  text-decoration: none;
  font-weight: 600;
  color: #555;
}

.navbar .login-btn {
  background-color: #ff5722;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
}

.coming-soon-container {
  display: none; /* Initially hidden */
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#comingSoonPopup .coming-soon-container {
  display: block; /* Displayed inside the popup */
}

.store-buttons img {
  width: 150px;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.1);
}

/* Hero Section */
/* .hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  background: linear-gradient(263deg, #eca407, #330ae9);
  min-height: 80vh;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding: 4rem 2rem;
  background-size: cover;
  background-position: center;
} */

/* .hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
} */

/* .hero-text p {
  font-size: 1.2rem;
  color: white;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
}

.search-bar {
  position: absolute;
  bottom:100px;
  left: 350px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-bar input {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #000;
  border-radius: 4px;
  width: 550px;
}

.search-bar button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #0056b3;
} */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  /* background: linear-gradient(to bottom, #4caf50, #2e7d32); */
  background: linear-gradient(263deg, #eca407, #330ae9);
  color: white;
  padding: 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Nunito', sans-serif;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-family: 'Nunito', sans-serif;
}

.search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

/* .search-bar input {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #000;
  gap: 10px;
  border-radius: 4px;
  width: 450px;
} */

.search-bar input {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  width: 450px;
}
.search-bar button {
  padding: 10px 20px;
  font-size: 16px;
  gap: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/* .search-bar button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 0 5px 5px 0;
  background-color: #ffffff;
  color: #4caf50;
  cursor: pointer;
  font-weight: bold;
} */

.search-bar button:hover {
  background-color: #e0e0e0;
}

/* Form Section */
.form-section {
  padding: 3rem 2rem;
  background-color: white;
  max-width: 700px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.form-section h2 {
  margin-bottom: 1.5rem;
  color: #333;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-section button {
  background-color: #ff5722;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.form-section button:hover {
  background-color: #e64a19;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-image {
    max-width: 100%;
  }
}



/* Popup Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    background: #fff;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    text-align: center;
  }
  .close-btn {
    /* position: absolute;
    top: 20px;
    right: 15px; */
    /* margin-bottom: 5px;
    margin-right: 3px; */
    background-color: transparent;
    border: none;
    font-size: 34px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .close-btn:hover {
    color: #ff0000; /* Change color on hover */
  }
  

  .modal-content h2 {
    margin-bottom: 1rem;
    color: #333;
  }
  
  .modal-content p {
    margin-bottom: 1.5rem;
    color: #666;
  }
  
  .popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .popup-form input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .popup-form button {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .popup-form button:hover {
    background-color: #e64a19;
  }
  
  .register-link {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  .register-link a {
    color: #ff5722;
    text-decoration: none;
    font-weight: bold;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }
  
  .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: center;
  }



  /* Footer Styles */
  .footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    font-family: 'Nunito', sans-serif;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .footer-section {
    flex: 1;
    margin: 10px;
    min-width: 250px;
  }

  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .footer-section p,
  .footer-section ul,
  .footer-section li {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: #00bcd4;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 10px;
  }

  