/* Footer */
.footer-section {
  color: white;
  position: relative;
}

.footer-bg {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
              url('../images/footer.png') top/cover  fixed;
  position: relative;

}

.footer-title {
  color: #D4AF37;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-top: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 35px;
  width: auto;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #D4AF37;
  border-radius: 2px;
}

.footer-text {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.footer-contact-item i {
  color: #D4AF37;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom-text {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

.footer-social {
  margin-top: 1rem;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #D4AF37;
  color: white;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {

}

@media (max-width: 576px) {

  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-text {
    font-size: 0.9rem;
  }
}
