@charset "utf-8";

/* Footer Styles */
.siteFooter {
  background-color: #333;
  color: #fbfbfb;
  padding: 3rem 0 1rem;
}

.footerInner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footerLogo {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
  margin-bottom: 1rem;
}

.footerLogo img {
  width: 70px;
  height: auto;
}

.footerInfo p {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
  margin-bottom: 0.5rem;
}

.telNumber {
  font-size: calc(2 * clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem));
}

.footerNav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footerNav a {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
  color: #fbfbfb;
  transition: color 0.3s ease;
}

.footerNav a:hover {
  color: #FF7A00;
}

.copyright {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 0.875rem;
  color: #999;
  padding-top: 1rem;
  border-top: 1px solid #444;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* Media Queries */
@media (width < 768px) {
  .footerInner {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footerNav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}