/* Footer Styles */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--sunset-gradient);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--spacing-lg);
}

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

.footer-logo h2 {
  font-size: 3rem;
  margin-bottom: var(--spacing-xs);
  background: var(--sunset-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo p {
  color: var(--gray);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.footer-links-column h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-links-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--sunset-gradient);
}

.footer-links-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-links-column ul li a {
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
  color: var(--yellow);
}

.footer-contact h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--sunset-gradient);
}

.footer-contact p {
  color: var(--gray);
  margin-bottom: var(--spacing-sm);
}

.footer-contact strong {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

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

.social-links a:hover {
  background: var(--sunset-gradient);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--gray);
  margin: 0;
  font-size: 1.4rem;
}

/* Newsletter Section */
.newsletter {
  background: var(--sunset-gradient);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/957061/pexels-photo-957061.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 3.6rem;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.newsletter-content p {
  margin-bottom: var(--spacing-lg);
  font-size: 1.8rem;
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
}

.newsletter-form input {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  font-family: var(--body-font);
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-logo {
    margin-bottom: var(--spacing-md);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    justify-content: center;
  }
}