/* ===== FOOTER ===== */
footer {
  background-color: #121212;
  text-align: center;
  color: #aaa;
  padding: 20px;
  font-size: 14px;
  margin-top: 60px;
  border-top: 1px solid #333;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.footer-section h3 {
  color: #f0c674;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-section p {
  margin-bottom: 10px;
  line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
  color: #f0c674;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #2a2a2a;
  color: #f0c674;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #f0c674;
  color: #1a1a1a;
  transform: scale(1.1);
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
  footer {
    padding: 15px;
    margin-top: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 20px;
  }
} 