@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body, .construction-title, .construction-desc, .construction-btn, .construction-404 {
  font-family: 'Montserrat', 'Poppins', Arial, Helvetica, sans-serif !important;
}

/* Construction Page Styles */

.construction-bg {
  background: #0a1633 !important;
}

.construction-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.construction-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.construction-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.construction-icon {
  font-size: 3rem;
  color: #ffc107;
  vertical-align: middle;
}

.construction-title {
  font-size: 2.5rem;
  color: #ffc107;
}

.construction-desc {
  color: #7b8ca6;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.construction-btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
}

.construction-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.construction-404 {
  position: absolute;
  top: 10px;
  right: 70px;
  font-size: 6rem;
  color: #42506a;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.construction-img {
  max-width: 100%;
  width: 500px;
  max-height: 380px;
  object-fit: contain;
  z-index: 2;
  position: relative;
  margin: 0 auto;
  display: block;
}

.construction-img-animate {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 48px;
  height: 80%;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Animated stripes (like a construction barrier) */
.construction-stripes {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    135deg,
    #ffc107 0 12px,
    #22243a 12px 24px
  );
  animation: stripes-move 1.2s linear infinite;
  opacity: 0.85;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 0 16px 2px #ffc10755;
}

@keyframes stripes-move {
  0% { background-position: 0 0; }
  100% { background-position: 48px 0; }
}

/* Animated sparks */
.construction-sparks {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 4;
  transform: translateY(-50%);
}

.construction-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffe066;
  opacity: 0.8;
  animation: spark-flicker 0.7s infinite alternate;
}
.construction-spark:nth-child(1) {
  left: 2px; top: 2px; animation-delay: 0s;
}
.construction-spark:nth-child(2) {
  left: 10px; top: 8px; animation-delay: 0.2s;
}
.construction-spark:nth-child(3) {
  left: 16px; top: 4px; animation-delay: 0.4s;
}

@keyframes spark-flicker {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0.2; transform: scale(1.5); }
}

@media (max-width: 991px) {
  .construction-img {
    width: 350px;
    max-height: 260px;
  }
  .construction-404 {
    font-size: 4rem;
    right: 40px;
  }
  .construction-img-animate {
    width: 32px;
  }
}

@media (max-width: 767px) {
  .construction-row {
    flex-direction: column;
  }
  .construction-img {
    width: 90vw;
    max-width: 320px;
    max-height: 180px;
  }
  .construction-404 {
    font-size: 2.5rem;
    right: 18px;
    top: 0;
  }
  .construction-img-animate {
    width: 18px;
  }
} 