/* ===========================================
   OLIMPYOLU ENVATO-STYLE FOOTER DESIGN
   =========================================== */

/* Envato-Style Footer Container */
.site-footer {
  background: #2c2c2c;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Footer Content - Top Section */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  border-bottom: 1px solid #404040;
}

/* Footer Column */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* Footer Column Title */
.footer-column-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Footer Bottom Section */
.footer-bottom {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Footer Bottom Links */
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-bottom-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Footer Bottom Text */
.footer-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-disclaimer,
.footer-copyright {
  color: #b0b0b0;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.footer-disclaimer {
  font-weight: 400;
}

.footer-copyright {
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-bottom-links {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  
  .footer-bottom {
    padding: 1.5rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-bottom-link {
    font-size: 0.9rem;
  }
  
  .footer-disclaimer,
  .footer-copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  
  .footer-bottom {
    padding: 1rem;
  }
  
  .footer-column-title {
    font-size: 0.85rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-bottom-link {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer,
  .footer-copyright {
    font-size: 0.75rem;
  }
}

/* Performance Optimizations */
.site-footer,
.footer-links a,
.footer-bottom-link {
  will-change: color;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .footer-links a,
  .footer-bottom-link {
    transition: none;
  }
}
