/* Footer Styles */
.main-footer {
  background: #1a1b23;
  color: #ffffff;
  padding: 4rem 0 2rem 0;
  margin-top: 0;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Neutraface Text Bold", "Inter", "Segoe UI", Tahoma, Geneva,
    Verdana, sans-serif;
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 1rem;
  font-family: "Neutraface Text Bold", "Inter", "Segoe UI", Tahoma, Geneva,
    Verdana, sans-serif;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 0;
}

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

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

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e74c3c;
}

.footer-note {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-style: italic;
}

.footer-buy-button {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  align-self: flex-start;
}

.footer-buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #888888;
  margin: 0;
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-love {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin: 0;
  font-weight: 500;
}

/* Footer responsive design */
@media (max-width: 768px) {
  .main-footer {
    padding: 3rem 0 2rem 0;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .footer-subtitle {
    font-size: 1.1rem;
  }

  .footer-buy-button {
    align-self: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-text {
    text-align: center;
  }
}
