/* FOOTER STYLES */
.footer {
  background: var(--color-dark-card-bg);
  border-top: 2px solid var(--color-green-button);
  margin-top: 3rem;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem 0;
  gap: 3rem;
}

/* Left Section: Logo and Site Name */
.footer__left {
  flex: 0 0 auto;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid var(--color-green-button);
}

.footer__site-name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-heading-green);
  text-shadow: 0 2px 4px rgba(126, 211, 33, 0.3);
}

/* Right Section: More Information */
.footer__right {
  flex: 1;
  max-width: 600px;
}

.footer__info-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-heading-green);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(126, 211, 33, 0.3);
}

.footer__terms-notice {
  color: #eee;
  font-size: var(--fs-base);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer__about {
  margin-bottom: 2rem;
}

.footer__about-title {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-heading-green);
  margin-bottom: 0.75rem;
}

.footer__about-text {
  color: #ccc;
  font-size: var(--fs-sm);
  line-height: var(--line-height);
  text-align: justify;
}

/* Footer Links */
.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__link {
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.footer__link:hover {
  color: var(--color-heading-green) !important;
  text-shadow: 0 0 5px rgba(126, 211, 33, 0.5);
  font-weight: 800;
}

.footer__separator {
  color: var(--color-heading-green);
  font-size: var(--fs-md);
  font-weight: bold;
}

/* Copyright Section */
.footer__copyright {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(126, 211, 33, 0.3);
  padding: 1.5rem 0;
}

.copyright__text {
  text-align: center;
  color: #aaa;
  font-size: var(--fs-sm);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
    gap: 2rem;
  }
  
  .footer__left {
    order: 1;
  }
  
  .footer__right {
    order: 2;
    max-width: 100%;
  }
  
  .footer__logo {
    justify-content: center;
  }
  
  .footer__about-text {
    text-align: center;
  }
  
  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    padding: 1.5rem 0;
  }
  
  .footer__logo-img {
    width: 50px;
    height: 50px;
  }
  
  .footer__site-name {
    font-size: var(--fs-base);
  }
  
  .footer__info-title {
    font-size: var(--fs-base);
  }
  
  .footer__about-text {
    font-size: 0.8rem;
  }
  
  .footer__links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer__separator {
    display: none;
  }
  
  .copyright__text {
    font-size: 0.75rem;
    padding: 0 1rem;
  }
}