* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  height: 100vh;
  overflow: hidden;
  padding-top: 70px; /* Space for fixed navbar */
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/Home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

/* Optional overlay for better text readability if needed */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

/* Content container */
.content {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
  padding-top: 100px;
}

/* Optional: Add some content styling */
h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.coming-soon {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  animation: fadeIn 1s ease-in, pulse 2s ease-in-out infinite;
  letter-spacing: 3px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(254, 207, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 25px rgba(254, 207, 0, 0.8),
      0 0 35px rgba(254, 207, 0, 0.6);
  }
}

p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 30px 20px;
  text-align: center;
}

.footer-content {
  color: white;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-location {
  font-size: 1rem;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-email {
  font-size: 1rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.social-icon {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-icon:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  h1 {
    font-size: 2rem;
  }

  .coming-soon {
    font-size: 2.5rem;
  }

  .content {
    padding-top: 80px;
  }

  p {
    font-size: 1rem;
  }

  .footer {
    padding: 20px 15px;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .footer-location,
  .footer-email {
    font-size: 0.9rem;
  }

  .social-icon {
    font-size: 1.3rem;
  }

  .social-media {
    gap: 15px;
  }
}
