/* Footer Styles */
.footer {
  background-image: url("../images/black-grey-texture-background.jpg");
  color: var(--white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
  position: relative;
}

.footer-container {
  max-width: var(--breakpoint-large);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 300px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.footer-nav a {
  color: var(--nav-text);
  font-family: var(--font-header);
  text-decoration: none;
  font-size: var(--font-size-large);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.yin-yang {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 50%, #000 50%);
  position: relative;
  border: 2px solid #ccc;
}

.yin-yang::before,
.yin-yang::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.yin-yang::before {
  background: #000;
  transform: translate(-50%, -100%);
  box-shadow: 0 30px 0 #fff;
}

.yin-yang::after {
  background: #fff;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -150%);
  box-shadow: 0 30px 0 #000;
}

.logo-text {
  font-family: var(--font-futura);
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: var(--white);
  letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
    min-height: auto;
  }

  .footer-nav {
    order: 2;
    align-items: center;
  }

  .footer-logo {
    order: 1;
  }

  .footer-nav a {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .footer {
    padding: var(--spacing-lg) 0;
  }

  .footer-nav {
    gap: var(--spacing-sm);
  }

  .yin-yang {
    width: 50px;
    height: 50px;
  }

  .yin-yang::before {
    width: 25px;
    height: 25px;
  }

  .yin-yang::after {
    width: 8px;
    height: 8px;
  }

  .logo-text {
    font-size: var(--font-size-large);
  }
}
