/* Footer Styles */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 40px;
  text-align: center;
  font-family: "Avenir55Roman", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-media {
  text-align: center;
  margin-bottom: 20px;
}

.social-icon {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

/* Footer Columns */
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column p a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  margin: 5px 0;
  font-weight: 100;
  line-height: 1;
}

.footer-column h4 a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  margin: 5px 0;
  font-weight: 100;
  line-height: 1;
}

/* Footer Bottom Section */
.footer-bottom p {
  font-size: 12px;
  text-align: center;
}

.footer-bottom {
  margin-top: 40px;
}

/* Media Queries for Responsive Layout */

/* Tablet and Desktop (Default Design) */
@media (max-width: 1024px) {
  .footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-column {
    flex: 1;
    min-width: 220px;
    text-align: left;
    margin-bottom: 20px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* Phone (Mobile) - 2x2 Layout */
@media (max-width: 768px) {
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns per row */
    gap: 20px;
    text-align: center;
  }

  .footer-column {
    min-width: 100%;
    /* Full-width for mobile */
    margin-bottom: 20px;
  }

  .social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
}
