@charset "utf-8";
/* Styles for chevy.oldcarmanualproject.com
   design (c) 2026 Rockethaus.com */

.site-footer {
  background-color: #1a1a1a;
  color: #f5f5f5;
  padding: 40px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

/* This container forces the columns to stay on a single row */
.footer-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;        /* Forces items left-to-right */
  justify-content: space-between; /* Even spacing between columns */
  align-items: flex-start;
  gap: 40px;                  /* Gap between columns */
}

.footer-col {
  flex: 1;                    /* Gives each column equal width space */
}

.footer-col h3, .footer-col h4 {
  color: #ff4500;
  margin-top: 0;
  margin-bottom: 15px;
}

.footer-col p {
  line-height: 1.5;
  margin: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #ff4500;
}

.social-icon {
  display: inline-block;
  color: #cccccc;
  margin-bottom: 15px;
}

.social-icon:hover {
  color: #1877f2;
}

.legal-links {
  font-size: 0.9em;
}

.footer-bottom {
  text-align: center;
  max-width: 1200px;
  margin: 30px auto 0 auto;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85em;
  color: #777;
}

/* Responsive adjustment for small mobile screens so it doesn't break */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column; 
    gap: 30px;
  }
}


