
/*================================================ 
  FOOTER
================================================ */

.footer {
    height: 200px; /* Increased height */
    background-color: rgba(72, 35, 33, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }
  
  .footer-section {
    flex: 1;
  }
  
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the logo and caption */
  }
  
  .footer-logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: -10px;
  }
  
  .footer-logo {
    transform: scale(0.5); /* Adjusted scale to avoid squashing */
  }
  
  .footer-strapline {
    line-height: 1.5;
    color: gold;
    text-align: center; /* Center the caption text */
  }
  
  .footer-strapline-text {
    margin-bottom: 5px;
  }
  
  .footer-link {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-middle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-middle .footer-link {
    margin-bottom: 10px;
  }
  
  .footer-right {
    text-align: right;
  }
  