/* footer.css */

/* Color Palette */
:root {
    --primary: #0A192F;      /* Deep Navy */
    --accent: #E14D25;       /* Warm Copper/Orange */
    --light: #F2F2F2;        /* Soft Light */
    --transition-speed: 0.3s;
  }
  

  
  /* Footer Container */
  footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
  }

  /* FOOTER */
footer {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  animation: fadeIn 1s ease-out;
}
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .footer-logo,
  .footer-links,
  .footer-social {
    flex: 1;
    min-width: 250px;
    margin: 10px;
  }
  
  .footer-logo img {
    max-width: 150px;
    display: block;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .footer-links h3,
  .footer-social h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
  }
  
  .footer-links ul,
  .footer-social ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li,
  .footer-social li {
    margin-bottom: 8px;
  }
  
  .footer-links a,
  .footer-social a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover,
  .footer-social a:hover {
    color: var(--accent);
  }
  
  .footer-social ul {
    display: flex;
    gap: 15px;
    flex-direction: column-reverse;
  }
  
  .footer-social i {
    font-size: 24px;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid var(--accent);
    padding-top: 20px;
    font-size: 14px;
  }
  @media (max-width: 768px) {
     .footer-social ul {
    display: flex;
    align-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    } 
  }