/* General Styles */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: rgb(0, 187, 255);
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/image.jpg') center/cover no-repeat; /* Background image */
  filter: blur(5px); /* Blur effect */
  z-index: -1; /* Push the background behind the content */
}

.coming-soon-content {
  text-align: center;
  z-index: 1; /* Ensure content stays above the background */
}

.coming-soon-content h1 {
  font-weight: 900; /* Extra bold font weight */
  font-size: 2.8rem; /* Slightly larger font size */
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Stronger text shadow for contrast */
  padding: 15px 20px; /* More padding for emphasis */
  border-radius: 10px;
  display: inline-block;
}

.coming-soon-content p {
  font-weight: 700; /* Bold font weight */
  color: white;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7); /* Subtle glow effect */
  font-size: 1.4rem; /* Slightly larger font size */
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
}

/* Footer Styles */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  color: white;
  font-size: 1rem;
}

.footer-content p {
  margin: 0;
  color: black; /* Bright gold text color */
  font-weight: 1000; /* Extra bold text for visibility */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* Glow effect */
  font-size: 1rem;
}

.footer-content i {
  margin-right: 10px;
  font-size: 1.8rem;
  color: red; /* White color for the icon */
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8); /* Glow effect for the icon */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content p {
    font-size: 0.9rem;
  }

  .footer-content i {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .footer-content p {
    font-size: 0.8rem;
  }

  .footer-content i {
    font-size: 1rem;
  }
}
