#main-footer {
  background: #4b2e21;
  padding-bottom: 40px;
}

#main-footer .color-white {
  color: #fff8f0;
}

#main-footer .color-beige {
  color: #c4a483;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.footer-description {
  line-height: 1.6;
  font-size: 15px;
}

.footer-title {
  color: #fff8f0;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-item i {
  font-size: 18px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  transition: color 0.3s ease;
  display: inline-block;
  padding: 4px 0;
}

.footer-link:hover {
  color: #c4a483 !important;
}

/* Sezione Social */
.footer-socials {
  margin-top: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff8f0;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social:hover {
  color: #c4a483 !important;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #c4a483;
  padding-top: 24px;
  margin-top: 40px;
}

.footer-copyright {
  font-size: 14px;
  line-height: 1.5;
}

.footer-social{
	color: #fff8f0
}

/* Responsive */
@media (max-width: 768px) {
  #main-footer {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-title {
    font-size: 18px;
    margin-top: 20px;
  }

  .footer-contact-item,
  .footer-links {
    gap: 10px;
  }
	
  .footer-contact-item a {
    width: fit-content;
    margin-left: 0 !important;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 25px;
  }
}