* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* TOP BAR */
.top-bar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.logo {
  height: 250px;
}

.right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.coming {
  font-size: 0.85rem;
  opacity: 0.9;
}

.socials span {
  font-size: 0.8rem;
  opacity: 0.8;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://www.qantas.com/travelinsider/en/explore/asia/india/incredibly-beautiful-places-you-need-to-visit-in-india/_jcr_content/galleryMain/gallery/galleryItems/51_1535006981141.img.1440.high.jpg/1635491454978.jpg") center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 700px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* TEXT */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* NOTIFY FORM */
.notify {
  display: flex;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 6px;
}

.notify input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 16px;
  color: #fff;
  outline: none;
  font-size: 0.9rem;
}

.notify input::placeholder {
  color: rgba(255,255,255,0.7);
}

.notify button {
  border: none;
  padding: 14px 26px;
  background: #1da1f2;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}
