* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a3a6b;
  overflow: hidden;
}
.bg-image {
  position: fixed;
  inset: 0;
 background-image: url("../img/coming-soon-banner.jpg"); /* ← your image her*/
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.logo {
  position: fixed;
  top: 24px;
  left: 32px;
  z-index: 10;
}

.logo img {
  height: 60px;
  width: auto;
  /* filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8)); */
}
.logo span {
  color: #f26622;
  text-shadow:
    2px 2px 12px rgba(242, 102, 34, 0.8),
    0 0 30px rgba(242, 102, 34, 0.5);
}
.title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow:
    2px 2px 12px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 0, 0, 0.8);
}
.subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  margin-bottom: 2rem;
  text-shadow:
    1px 1px 8px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.8);
}
