/* Footer Navigation */
.footer-nav {
  background: #f5f5f5;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 3px solid #000000;
}

.footer-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  font-family: Antonio, "Arial Black", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d71d07;
}

/* Footer Bottom */
.footer-bottom {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

.footer-bottom p {
  font-size: 1rem;
  margin-bottom: 5px;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #666666;
  padding-bottom: 2px;
}

.footer-bottom a:hover {
  color: #ccb113;
  border-bottom-color: #ccb113;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom p {
    font-size: 0.875rem;
  }
}
