/* Footer Component - 2025 Minimal Professional Design */

.footer-minimal {
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  color: var(--color-white);
  padding: var(--space-16) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}

.footer-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.4),
    transparent
  );
  animation: footer-line-glow 4s ease-in-out infinite alternate;
}

@keyframes footer-line-glow {
  0% { opacity: 0.4; }
  100% { opacity: 0.8; }
}

.footer-minimal::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center,
    rgba(212, 175, 55, 0.02) 0%,
    transparent 70%
  );
  animation: footer-glow 15s linear infinite;
  pointer-events: none;
}

@keyframes footer-glow {
  0% { transform: rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.5; }
  100% { transform: rotate(360deg); opacity: 0.3; }
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-10);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  animation: footer-logo-slide 1s ease-out both;
}

@keyframes footer-logo-slide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-logo-image {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  transition: all var(--duration-normal) var(--ease-out-quart);
  filter: brightness(1.1);
}

.footer-logo:hover .footer-logo-image {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 
    0 8px 25px rgba(212, 175, 55, 0.4),
    0 0 15px rgba(212, 175, 55, 0.3);
}

.footer-logo-text {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-black);
  font-size: 1.1rem;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  animation: footer-links-slide 1s ease-out 0.2s both;
}

@keyframes footer-links-slide {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius-md);
  transition: all var(--duration-normal) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  transition: all var(--duration-normal) var(--ease-out-quart);
  transform: translateX(-50%);
}

.footer-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.footer-links a:hover::before {
  width: 80%;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: footer-social-slide 1s ease-out 0.4s both;
}

@keyframes footer-social-slide {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all var(--duration-normal) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.footer-social .social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transition: all var(--duration-normal) var(--ease-out-quart);
  transform: translate(-50%, -50%);
}

.footer-social .social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-social .social-link:hover::before {
  width: 60px;
  height: 60px;
}

.footer-social .social-link i {
  transition: all var(--duration-normal) var(--ease-bounce);
  position: relative;
  z-index: 2;
}

.footer-social .social-link:hover i {
  transform: scale(1.1) rotate(10deg);
}

/* Platform-specific hover colors */
.footer-social .social-link:nth-child(1):hover {
  border-color: rgba(66, 103, 178, 0.4);
}

.footer-social .social-link:nth-child(1):hover::before {
  background: rgba(66, 103, 178, 0.15);
}

.footer-social .social-link:nth-child(1):hover i {
  color: #4267B2;
}

.footer-social .social-link:nth-child(2):hover {
  border-color: rgba(225, 48, 108, 0.4);
}

.footer-social .social-link:nth-child(2):hover::before {
  background: rgba(225, 48, 108, 0.15);
}

.footer-social .social-link:nth-child(2):hover i {
  color: #E1306C;
}

.footer-social .social-link:nth-child(3):hover {
  border-color: rgba(10, 102, 194, 0.4);
}

.footer-social .social-link:nth-child(3):hover::before {
  background: rgba(10, 102, 194, 0.15);
}

.footer-social .social-link:nth-child(3):hover i {
  color: #0A66C2;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-6) var(--container-padding) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  position: relative;
  z-index: 2;
  animation: footer-bottom-slide 1s ease-out 0.6s both;
}

@keyframes footer-bottom-slide {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
  font-weight: var(--font-weight-light);
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-content {
    flex-direction: column;
    gap: var(--space-8);
    text-align: center;
  }
  
  .footer-links {
    order: 2;
  }
  
  .footer-social {
    order: 3;
  }
}

@media (max-width: 768px) {
  .footer-minimal {
    padding: var(--space-12) 0 var(--space-5);
  }
  
  .footer-content {
    gap: var(--space-6);
    margin-bottom: var(--space-8);
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: var(--space-6);
    justify-content: center;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    padding: var(--space-2);
  }
  
  .footer-social {
    gap: var(--space-4);
    justify-content: center;
  }
  
  .footer-social .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-minimal {
    padding: var(--space-10) 0 var(--space-4);
  }
  
  .footer-content {
    gap: var(--space-5);
    margin-bottom: var(--space-6);
  }
  
  .footer-logo-image {
    width: 45px;
    height: 45px;
  }
  
  .footer-logo-text {
    font-size: 1rem;
  }
  
  .footer-links {
    gap: var(--space-4);
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
  
  .footer-social .social-link {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
}