/**
 * @file
 * Footer Styles
 * Multi-column footer with dark theme
 */

.dobig-footer {
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 0;
}

.dobig-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 968px) {
  .dobig-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .dobig-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.dobig-footer-brand {
  max-width: 300px;
}

.dobig-footer-brand img {
  height: 50px;
  margin-bottom: 1.5rem;
}

.dobig-footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.dobig-footer-social {
  display: flex;
  gap: 1rem;
}

.dobig-footer-social a {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.dobig-footer-social a:hover {
  background-color: #F97316;
  color: white;
  transform: translateY(-3px);
}

.dobig-footer-column h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.dobig-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dobig-footer-links li {
  margin-bottom: 0.75rem;
}

.dobig-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.dobig-footer-links a:hover {
  color: #F97316;
  transform: translateX(5px);
}

.dobig-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dobig-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.dobig-footer-contact i {
  color: #F97316;
  font-size: 1.125rem;
  margin-top: 3px;
}

/* Footer Bottom */
.dobig-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.dobig-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin: 0;
}

.dobig-footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.dobig-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.dobig-footer-bottom-links a:hover {
  color: #F97316;
}

@media (max-width: 640px) {
  .dobig-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .dobig-footer-bottom-links {
    gap: 1rem;
  }
}
