﻿/* ============================================================
   FILE 6: 06-footer.css
   Footer Redesign
   Project: Gentlwish.com — Taoist Talismans & Spiritual Wellness
   ============================================================ */

/* ========================================
   FOOTER — MAIN CONTAINER
   ======================================== */

.gentlwish-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  font-family: var(--font-body);
  padding: 60px 0 0;
  margin-top: 60px;
}

/* ========================================
   FOOTER — 4-COLUMN GRID
   ======================================== */

.gentlwish-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.gentlwish-footer .footer-column h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: var(--font-weight-heading-600);
  color: var(--color-footer-link);
  margin: 0 0 20px;
  letter-spacing: 0.3px;
}

.gentlwish-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.gentlwish-footer .footer-column ul li a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--font-weight-body-400);
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.6;
}

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

/* Footer About Column */
.gentlwish-footer .footer-about p {
  font-size: 15px;
  line-height: var(--line-height-body);
  color: var(--color-footer-text);
  margin: 0 0 20px;
}

.gentlwish-footer .footer-about .footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: var(--font-weight-heading-700);
  color: var(--color-footer-link);
  margin: 0 0 16px;
  display: block;
  text-decoration: none;
}

/* ========================================
   FOOTER — SOCIAL LINKS
   ======================================== */

.gentlwish-footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.gentlwish-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-footer-text);
  text-decoration: none;
  font-size: 16px;
  transition: all var(--transition-fast);
}

.gentlwish-footer .footer-social a:hover {
  background: var(--color-footer-hover);
  border-color: var(--color-footer-hover);
  color: var(--color-footer-bg);
}

/* ========================================
   FOOTER — NEWSLETTER SIGNUP IN FOOTER
   ======================================== */

.gentlwish-footer .footer-newsletter {
  margin-top: 12px;
}

.gentlwish-footer .footer-newsletter p {
  font-size: 14px;
  color: var(--color-footer-text);
  margin: 0 0 12px;
  line-height: 1.6;
}

.gentlwish-footer .footer-newsletter form {
  display: flex;
  gap: 8px;
}

.gentlwish-footer .footer-newsletter input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-footer-link);
  transition: border-color var(--transition-fast);
}

.gentlwish-footer .footer-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.gentlwish-footer .footer-newsletter input[type="email"]:focus {
  border-color: var(--color-footer-hover);
  outline: none;
}

.gentlwish-footer .footer-newsletter button {
  padding: 10px 20px;
  background: var(--color-secondary);
  color: var(--color-text);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--font-weight-body-500);
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.gentlwish-footer .footer-newsletter button:hover {
  background: var(--color-secondary-hover);
}

/* ========================================
   FOOTER — BOTTOM BAR / COPYRIGHT
   ======================================== */

.gentlwish-footer .footer-bottom {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gentlwish-footer .footer-bottom .footer-bottom-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.gentlwish-footer .footer-bottom .copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.gentlwish-footer .footer-bottom .footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.gentlwish-footer .footer-bottom .footer-legal-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.gentlwish-footer .footer-bottom .footer-legal-links a:hover {
  color: var(--color-footer-hover);
}

/* ========================================
   FOOTER — PAYMENT ICONS
   ======================================== */

.gentlwish-footer .footer-payment-icons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.gentlwish-footer .footer-payment-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--color-footer-text);
  letter-spacing: 0.3px;
}

/* ========================================
   FOOTER — MOBILE RESPONSIVE
   ======================================== */

@media screen and (max-width: 1024px) {
  .gentlwish-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .gentlwish-footer {
    padding: 40px 0 0;
  }

  .gentlwish-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gentlwish-footer .footer-column {
    text-align: center;
  }

  .gentlwish-footer .footer-social {
    justify-content: center;
  }

  .gentlwish-footer .footer-newsletter form {
    flex-direction: column;
  }

  .gentlwish-footer .footer-newsletter button {
    width: 100%;
  }

  .gentlwish-footer .footer-bottom .copyright {
    font-size: 12px;
  }
}
