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

/* Full viewport and flex layout */
body, html {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden; /* prevent scroll while animating */
}

/* Background container */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/Good.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: bgFade 3s forwards;
  z-index: -1;
}

/* Overlay: full height, flex layout to center content */
.overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* center the main content */
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 1;
  padding: 40px 20px 100px 20px; /* extra bottom padding for footer space */
}


/* Content in the vertical center */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Coming Soon letters */
.coming-soon {
  color: #000;
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@keyframes letterBounce {
  0% { opacity: 0; transform: translateY(-30px); }
  60% { opacity: 1; transform: translateY(10px); }
  80% { transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Construction text */
.construction {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  text-shadow: 2px 2px 8px rgba(255,255,255,0.5);
  margin-top: 10px;
  opacity: 0;
  animation: fadeInText 1.5s forwards;
  animation-delay: 3s;
}

@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Background fade */
@keyframes bgFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Footer styling */
footer {
  position: absolute;   /* pin it at the bottom */
  bottom: 0;
  left: 0;
  width: 100%;          /* span entire width */
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  z-index: 2;           /* above background */
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* All footer icons white by default *//
footer i {
  margin-right: 8px;
  color: #fff;      /* default white */
  transition: all 0.3s ease;
}

/* LinkedIn icon hover */
.social-icons a:hover .fa-linkedin {
  color: #0077B5;  /* LinkedIn blue */
}

/* Instagram icon gradient hover */
.social-icons a:hover .fa-instagram {
  color: transparent;  /* needed for gradient to show */
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  background-clip: text;
}



footer p {
  margin: 5px 0;
  font-size: 0.9rem;
}


.social-icons {
  margin-top: 5px;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}



/* Responsive */
@media (max-width: 768px) {
  .coming-soon {
    font-size: 3rem;
  }
  .construction {
    font-size: 1.5rem;
  }
  .social-icons a {
    font-size: 1.2rem;
  }
}
