@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 1);
  letter-spacing: 0.5px;
  height: 100%;
}


/* NAVBAR STYLING */
.navbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-radius: 60px;
  z-index: 1000;
  color: #fff;
  padding: 8px 40px;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 12px; /* Adjust the spacing between nav items */
}

.nav-link {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  padding: 8px;
  font-weight: 400;

}

.nav-link svg {
  margin-left: 4px;
}

/* Optional hover effect */
.nav-link:hover {
  color: #fff;
}


.btn-primary {
  background: linear-gradient(135.96deg, #FFD700 0%, #FFCD00 45.22%, #B8860B 98.37%);
  border-radius: 48px;
  color: rgba(14, 14, 14, 1);
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding: 8px;
}


/* Base styles for all icon wrappers */
.icon-wrapper {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Icon image styles */
.icon-wrapper img {
  object-fit: contain;
}

/* Facebook */

@media (max-width: 992px) {
.navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Smaller vertical spacing on mobile */
  }
  .navbar-collapse {
    background-color: #000 !important;
    padding: 20px;
    border-radius: 10px;
  }
 .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    padding: 8px 10px;
  }

    .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}



@media (max-width: 768px) {
  .social-icons {
    margin-top: 10px;
    gap: 10px;
  }

  .navbar {
    padding: 8px 20px;
    top: 10px;
  }


  .navbar-nav .nav-link {
    color: white !important;
  }



  .navbar-nav {
    text-align: center;
    width: 100%;
  }

  .btn-primary {
    display: flex;
    justify-content: center;

  }





  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar-nav .nav-link {
    display: inline-block;
  }




  .icon-wrapper svg {

    width: 50px;
    height: 50px;
  }
}



.hero-section {
  position: relative;
  min-height: 100svh;
  background-image: url('../images/hero-banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white; /* optional: ensures text is readable */
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  z-index: 1;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

input.form-control {
  max-width: 400px;
}

.timer h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}


.custom-footer {
  margin-top: 0;
}

footer h6 {
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "poppins", sans-serif;
}


.notify-group {
  max-width: 600px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group-custom {
  display: flex;
  background: transparent;
  overflow: hidden;
}

.notify-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
  border-radius: 6px;
  background: transparent;
  color: white;
  font-size: 1rem;
}

.notify-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 16px;
  font-family: "poppins", sans-serif;
  background: transparent !important;
}

.notify-button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  background-color: #FFD700;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "poppins", sans-serif;
}

.notify-button:hover {
  background-color: #e6c200;
}



.hero-content h1 {
  font-size: 64px;
  font-weight: 600;
  background: linear-gradient(135.96deg, #FFD700 0%, #FFCD00 45.22%, #B8860B 98.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* For Firefox */
  color: transparent;
  font-family: "montserrat", sans-serif;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  font-family: "poppins", sans-serif;

}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-box h2 {
  font-size: 48px;
  color: #FFD700;
  margin: 0;
  font-weight: bold;
  line-height: 1;
  font-family: "montserrat", sans-serif;
}

.time-box small {
  font-size: 16px;
  color: white;
  font-weight: 400;
  margin-top: 4px;
  font-family: "poppins", sans-serif;
}

.separator {
  font-size: 48px;
  color: #FFD700;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 48px;
}


.hero-section-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

.hero-section-container .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section-container .hero-content-container {
  z-index: 1;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}


.hero-content-container h1 {
  font-size: 64px;
  font-weight: 600;
  background: linear-gradient(135.96deg, #FFD700 0%, #FFCD00 45.22%, #B8860B 98.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* For Firefox */
  color: transparent;
  font-family: "montserrat", sans-serif;
}

.hero-content-container p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  font-family: "poppins", sans-serif;

}

































/* Responsive: Tablet & Mobile */
@media (max-width: 768px) {

  /* Navbar adjustments */
  .navbar {
    top: 10px;
    padding: 8px 16px;
  }

  .navbar-brand {
    margin: 0;
  }

  .social-icons {
    margin-top: 10px;
    gap: 10px;
    flex-wrap: wrap;
  }


  .icon-wrapper img {
    width: 20px;
    height: 20px;
  }

  /* Hero content */
  .hero-content {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content p {
    font-size: 16px;
    margin-top: 16px;
  }

  /* Countdown styling */
  .countdown {
    gap: 8px;
  }

  .time-box h2 {
    font-size: 32px;
  }

  .separator {
    font-size: 32px;
    height: auto;
  }

  /* Notify input and button layout */
  @media (max-width: 768px) {
    .input-group-custom {
      flex-direction: row;
      gap: 10px;
    }

    .notify-input {
      width: 100%;
      padding: 0.5rem 0.75rem;
      font-size: 0.9rem;
    }

    .notify-button {

      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
  }

  /* Footer */
  .custom-footer {
    margin-top: 0;
    padding: 1rem;
  }

  footer h6 {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .social-icons {
    margin-top: 15px !important;
  }

  .time-box small {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .social-icons {
    margin-top: 10px !important;
  }

  .time-box small {
    font-size: 12px;
  }
}