/* =========================================
   S CURVE FOOTER - UPDATED COLORS 2026
========================================= */

.site-footer {
  position: relative;
  background: none;
  color: #ffffff; /* White Primary Accent */
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* S Curve SVG */
.footer-curve {
  display: block;
  width: 100%;
  height: 150px;
}

.footer-curve path {
  fill: #800000; /* Primary Maroon */
}

/* Footer Content */
.footer-content {
  background-color: #800000; /* Primary Maroon */
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px 30px;
  z-index: 2;
}

/* Columns */
.footer-columns {
  display: flex;
  gap: 70px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 260px;
  min-width: 240px;
}

/* Headings - Soft Gold Accent */
.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #D4AF37; /* Soft Gold */
  text-align: left; /* Default Left Align */
}

/* Text - White Accent */
.footer-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff; 
}

/* Links - White with Gold Hover */
.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #D4AF37; /* Soft Gold Hover */
  text-decoration: underline;
}

/* ==============================
   WORDPRESS MENU – LEFT ALIGN
================================ */

.footer-col.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-col.links ul li {
  margin-bottom: 10px;
  text-align: left;
}

.footer-col.links ul li a {
  display: block;
  text-align: left;
}

/* Fix for WP menu flex/center styles */
.footer-col.links .menu {
  display: block; /* Overrides flex to ensure left alignment */
}

/* Developed By - Darker Maroon or Deep Gold */
.footer-developed-by {
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  background-color: #4D0000; /* Darker shade of Maroon */
  padding: 12px 20px;
  border-top: 1px solid #D4AF37; /* Gold accent divider */
}

.footer-developed-by strong {
  color: #D4AF37; /* Soft Gold for Developer Name */
}

/* Alignment Logic */
.footer-columns .footer-col:first-child h3 {
  text-align: center; /* Keep Address title centered as requested */
}

.footer-columns .footer-col:first-child p {
  text-align: center; /* Keep Address text centered if needed */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-curve {
    height: 100px;
  }
  
  .footer-columns .footer-col:first-child h3 {
    text-align: left; /* Better for mobile readability */
  }
}
