/* ===================================
   FOOTER STYLES - ATOMIC LAB
   Dark sci-fi themed footer with neon accents
   =================================== */

/* Main Footer Container */
.site-footer {
  background: linear-gradient(180deg, rgba(10, 10, 31, 0.95) 0%, rgba(5, 5, 20, 1) 100%);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  margin-top: 4rem;
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

/* Animated background effect */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 229, 255, 0.5) 50%, 
    transparent 100%);
  animation: scan-line 8s linear infinite;
}

@keyframes scan-line {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

/* Footer Content Grid */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-section {
  color: #ffffff;
}

/* Footer Title Styling */
.footer-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00e5ff, #ff00aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}


/* Footer Subtitles */
.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #00e5ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #00e5ff, transparent);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #00e5ff;
  padding-left: 5px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 0;
  height: 1px;
  background: #00e5ff;
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

.footer-links a:hover::before {
  width: 5px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(0, 50, 100, 0.3);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
  margin: 0.25rem 0;
}

.footer-tech {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.heart {
  color: #ff0040;
  animation: heartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 2rem;
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  
  .footer-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    margin-bottom: 1.5rem;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
  
  .footer-bottom {
    padding: 1.5rem 1rem;
  }
}