/* Footer Styles */
.site-footer {
  background-color: #801214; /* Deep navy background */
  color: #e2e8f0; /* Soft text */
  padding: 4rem 1rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 4px solid #FBB040;
  
}

.footer-container {
  
  margin: 0 auto;
 
  

}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  
  justify-content: space-between ;
  gap: 2rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 2rem;
}

.footer-widget {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.site-description {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-widget-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
  border-left: 4px solid #FBB040;
  padding-left: 0.5rem;
}

.footer-nav .footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav .footer-nav-links li {
  margin-bottom: 0.5rem;
}

.footer-nav .footer-nav-links a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav .footer-nav-links a:hover {
  color: #FBB040;
}

/* Bottom Bar */
.footer-bottom-bar {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #fff;
}

.footer-bottom-bar a {
  color: #FBB040;
  text-decoration: none;
}

.footer-bottom-bar a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-widget {
    flex: 1 1 100%;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-nav .footer-nav-links li {
    display: inline-block;
    margin: 0 10px 10px 10px;
  }
}
