*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Quicksand', sans-serif;
}

body{
  min-height:100vh;
}

.hero{
  position:relative;
  min-height:100vh;
  background:url('https://ik.imagekit.io/Garfield/spacejoy-GNs831kqdoM-unsplash_UkiZrPX3E.jpg?tr=w-1080') center/cover no-repeat;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  padding:40px 20px;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:1;
}

.top-logo{
  z-index:2;
}

.top-logo img{
  width:120px;
}

.content{
  z-index:2;
  text-align:center;
  max-width:900px;
}

.content h1{
  font-size:clamp(4rem,4vw,6rem);
  font-weight:600;
  color:#fff;
  margin-bottom:20px;
  line-height:97.2%;
  letter-spacing:-0.04em;
}

.subtitle{
  color:#ddd;
  font-size:1.1rem;
  line-height:1.6;
  margin-bottom:35px;
}

.notify-box{
  background:#fff;
  border-radius:12px;
  display:flex;
  overflow:hidden;
  max-width:600px;
  margin:0 auto;
}

.notify-box input{
  flex:1;
  border:none;
  padding:18px 20px;
  font-size:1rem;
  outline:none;
}

.notify-box button{
  background:#f5a700;
  border:none;
  padding:0 35px;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.notify-box button:hover{
  background:#e09400;
}

.footer{
  z-index:2;
  text-align:center;
  color:#ccc;
}

.bidir-text{
  color:#fff;
  font-size:0.95rem;
  margin-bottom:35px;
  letter-spacing:0.05em;
}

.bidir-link{
  font-weight:700;
  color:#FFA800;
  text-decoration:none;
}

.socials img{
  width:26px;
  height:26px;
  object-fit:contain;
}

.socials{
  display:flex;
  gap:20px;
  justify-content:center;
  margin-bottom:15px;
}

.socials a{
  color:#fff;
  font-size:1.2rem;
  transition:0.3s;
}

.socials a:hover{
  color:#f5a700;
}

copyright{
  font-size:0.8rem;
}

/* Tablet */
@media(max-width:1024px){
  .content h1{font-size:2.8rem;}
}

/* Mobile */
@media(max-width:600px){
  .notify-box{
    flex-direction:column;
  }

  .notify-box button{
    padding:15px;
  }
}