/* Footer Styles */
.footer {
  background: #050505;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.logo {
  font-size: 2rem;
  color: var(--text-color, #fff);
  text-decoration: none;
  display: block;
}

.brand-tagline {
  color: var(--text-muted, #a0a0a0);
  margin-top: 0.5rem;
}

.footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-newsletter p {
  color: var(--text-muted, #a0a0a0);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.8rem 1rem;
  color: #fff;
  border-radius: 4px;
  flex-grow: 1;
}

.newsletter-form button {
  background: #fff;
  color: #000;
  border: none;
  padding: 0 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

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

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column ul a {
  color: var(--text-muted, #a0a0a0);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul a:hover {
  color: #fff;
}

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

@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
}

.social-links a {
  color: #fff;
  background: rgba(255,255,255,0.05);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a i,
.social-links a svg {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

.social-links a:hover {
  background: var(--primary-color, #ff3366);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  color: var(--text-muted, #a0a0a0);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-muted, #a0a0a0);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #fff;
}

/* Media Queries */

@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  
  .newsletter-form input {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .newsletter-form button {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
