@import url("./base/_vars.css");

/* =========================================
   FOOTER STYLING
========================================== */

.footer-main {
  background-color: #000000;
  border-top: 1px solid rgba(210, 171, 43, 0.2);
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 5rem 3rem;
  }
}

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

/* Brand Section */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: #e2c86c;
}

.footer-tagline {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-social-link {
  transition: opacity 0.3s ease;
  color: #d2ab2b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  opacity: 0.7;
}

.footer-social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Section Title */
.footer-section-title {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Navigation Links */
.footer-nav-links,
.footer-info-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d2ab2b;
}

.footer-text {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Bottom Section */
.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(210, 171, 43, 0.1);
}

.footer-copyright {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin: 0;
}
