.footer {
  background: #1f1f1f;
  color: #ccc;
  font-size: 0.875rem;
  padding: 1.5rem 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer__brand-title {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 0 0.25rem 0;
  color: #fff;
}

.footer__brand-subtitle {
  font-size: 0.875rem;
  color: #ccc;
  margin: 0 0 0.5rem 0;
  font-weight: 400;
}

.footer__brand-description {
  color: #ccc;
  line-height: 1.4;
  margin: 0;
  font-size: 0.75rem;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact-item {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.footer__contact-link {
  color: #fff;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  border-radius: 4px;
  display: inline-block;
}

.footer__contact-link:hover {
  color: #1f1f1f;
  background: #fff;
  text-decoration: none;
}

.footer__bottom {
  margin-top: 1.5rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright,
.footer__dev {
  margin: 0;
  color: #999;
}

.footer__dev a {
  color: #aaa;
  text-decoration: none;
}

.footer__dev a:hover {
  text-decoration: underline;
}

/* Tablet and Desktop styles */
@media (min-width: 640px) {
  .footer__top {
    flex-wrap: nowrap;
  }
  
  .footer__brand {
    flex: 2;
  }
  
  .footer__contact {
    flex: 1;
    display: flex;
    align-items: center;
  }
} 