*{
    font-family: 'Montserrat', sans-serif;
}

/* Footer Section */
footer {
  background: linear-gradient(135deg, #2f3a44, #3a4651);
  padding: 60px 20px;
  color: #f5f5e8;
  position: relative;
}

footer .monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: 120px;
  color: #d4af37;
  opacity: 0.1;
  pointer-events: none;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

footer .footer-column {
  flex: 1;
  min-width: 200px;
}

footer .footer-column h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

footer .footer-column p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

footer .footer-column ul {
  list-style: none;
}

footer .footer-column ul li {
  margin-bottom: 10px;
}

footer .footer-column ul li a {
  text-decoration: none;
  color: #f5f5e8;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

footer .footer-column .contact-info {
  font-size: 14px;
  margin-bottom: 10px;
}

footer .footer-column .contact-info a {
  color: #d4af37;
  text-decoration: none;
}

footer .footer-column .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

footer .footer-column .social-icons a {
  font-size: 24px;
  color: #f5f5e8;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .footer-column .social-icons a:hover {
  color: #d4af37;
  transform: scale(1.2);
}

footer .newsletter {
  flex: 1;
  min-width: 300px;
}

footer .newsletter .newsletter-form {
  display: flex;
  max-width: 300px;
}

footer .newsletter input {
  flex: 1;
  padding: 12px;
  border: 1px solid #d4af37;
  border-right: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  background-color: #fff;
  font-size: 14px;
}

footer .newsletter button {
  padding: 12px 24px;
  background: linear-gradient(135deg, #d4af37, #b8972e);
  color: #2f3a44;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer .newsletter button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

footer .newsletter button:hover::before {
  left: 100%;
}

footer .newsletter button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.7);
}

footer .tagline {
  text-align: center;
  margin-top: 20px;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: #d4af37;
  text-transform: uppercase;
}

footer .copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .newsletter .newsletter-form {
    max-width: 100%;
  }

  footer .monogram {
    font-size: 80px;
  }
}