/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Rajdhani', sans-serif;
  background-color: #000; /* Fallback background */
  overflow-x: hidden;
}

/* ✅ Background Image Container */
.hero-container {
  background: url('cover.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  position: relative;
}

/* ✅ Overlay for dark tint */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ✅ Top Right Content */
.top-right-box {
  position: absolute;
  top: 5%;
  right: 5%;
  max-width: 500px;
  text-align: right;
  color: #fff;
}

.brand {
  font-size: 2rem;
  color: #ff0000;
  text-shadow: 2px 2px 10px #000;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1rem;
  color: #ffffffcc;
  text-shadow: 1px 1px 5px #000;
  word-break: break-word;
}

/* ✅ Launching Soon Left Box */
.launch-box {
  position: absolute;
  top: 30%;
  left: 5%;
  transform: translateY(-50%);
}

.launch-text {
  font-size: 1rem;
  color: #ffcc00;
  text-shadow: 0 0 10px #ffcc00, 0 0 20px #ffaa00, 0 0 30px #ff5500;
  animation: glowScale 1.5s infinite ease-in-out alternate;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ✅ Footer */
.footer {
  position: absolute;
  bottom: 20px;
  left: 5%;
  font-size: 0.9rem;
  color: #ccc;
}

/* ✅ Animation */
@keyframes glowScale {
  0% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 5px #ffcc00;
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
    text-shadow: 0 0 15px #ffaa00, 0 0 30px #ff5500;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 10px #ffcc00;
  }
}

/* ✅ Responsive Mobile Fixes */
@media (max-width: 768px) {
  .hero-container {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .launch-box {
    position: static;
    transform: none;
    text-align: center;
    margin-top: 2rem;
  }

  .top-right-box {
    position: static;
    text-align: center;
    margin: 1rem 2rem;
  }

  .brand {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .footer {
    position: static;
    text-align: center;
    margin-top: 2rem;
  }
}
