/* footer style */
/* need little more work */
/* all var are used here located in dark and light css flie */
.site-footer {
  background-color: var(--bg-card-dark);
  color: var(--text-primary-dark);
  padding: 4rem 0 2rem;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  font-size: 0.9rem;
}
/* for light and dark mode  */
html.dark .site-footer a {
  color: #cbd5e0;
  
}
html.dark .site-footer a:hover {
  color: var(--accent-secondary-dark);
}
html.dark .site-footer .footer-title {
  color: var(--accent-secondary-dark);
}
html.light .site-footer a {
  color: #cbd5e0;
}
html.light .site-footer a:hover {
  color: var(--accent-secondary-dark);
}
html.light .site-footer .footer-title {
  color: var(--accent-secondary-dark);
}
/* use flex more this */
.footer-grid {
  display: flex;
  margin-bottom: 2.5rem;
  gap: 5rem;
}
.footer-column .footer-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-secondary-dark);
  margin-bottom: 1rem;
}
.footer-column a {
  text-decoration: none;
}

.social-links svg {
  height: 30px;
  fill: var(--accent-primary-dark);
}
.social-links a {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 1.5rem;
}
.social-links  #fb{
  height: 30px;
  fill: var(--accent-primary-light);
}
.social-links  #x{
  height: 30px;
  fill: var(--text-primary-dark);
}
.social-links  #lk{
  height: 30px;
  fill: var(--accent-primary-light);
}
.social-links  #insta{
  height: 30px;
  fill: var(--accent-secondary);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.85rem;
  color: var(--text-secondary-dark);
}
html.light .footer-bottom {
  border-top: 1px solid #4a5568;
  color: #a0aec0;
}

/* scroll animation styles */
.scroll-animate {
  /* in first it should be not show */
  opacity: 0;
  /* located 30px down */
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.animated {
  /* when it happen it should be show */
  opacity: 1;
  /* and come to it real place */
  transform: translateY(0);
}
