/* ----------------------------------- */
/* 🔥 FOOTER - FULL WIDTH STRUCTURE */
/* ----------------------------------- */
#main-footer {
    background-color: #fef1e5;
    padding: 20px 20px 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-family: 'Lora', serif;
    z-index: 10;
  }
  
  .footer-grid {
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 8px;
  }
  
  .footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .footer-logo-link {
    display: inline-block;
  }
  
  .footer-logo {
    width: 34px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
  
  .footer-logo-link:hover .footer-logo {
    opacity: 1;
  }
  
  .footer-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: #5b5147;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: 1px;
  }
  
  .footer-links a:hover {
    color: #d14b00;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #5b5147;
    opacity: 0.8;
    letter-spacing: 0.6px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.04);
  }

  /* ----------------------------------- */
/* 🔥 RESPONSIVE - MOBILE OPTIMIZATION */
/* ----------------------------------- */
@media screen and (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem 1rem;
    }
    
    .footer-left {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .footer-links a {
        padding: 10px 0;
        width: 100%;
        display: block;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem;
    }
}