/**
 * May & Co Footer Styles
 * Matching navbar color scheme and styling
 */

/* ===== FOOTER SECTION ===== */
.footer-section {
  background: linear-gradient(135deg, #8B0000, #A52A2A);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 55px 0 34px;
  position: relative;
  margin-top: 89px;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 150px;
  pointer-events: none;
  transform: rotate(180deg);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-ornament {
  width: 150px;
  height: 30px;
  margin: 0 auto 34px;
  background-image: url('../assets/page-divider.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 21px;
  text-align: center;
  font-style: italic;
}

.footer-links {
  margin-bottom: 21px;
  text-align: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.divider {
  margin: 0 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.8;
  text-align: center;
  font-family: 'Crimson Text', serif;
  letter-spacing: 0.02em;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links a {
    display: block;
    margin: 5px 0;
  }
  
  .divider {
    display: none;
  }
  
  .footer-section {
    padding: 34px 0 21px;
  }
}

@media (max-width: 576px) {
  .footer-tagline {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
}
