/* =========================================================
   Premium Beaux‑Arts Footer — Aquarelle Plus
   ========================================================= */

/* ---------- Reset list styles inside footer ---------- */
.premium-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- Root Variables ---------- */
:root {
  --footer-bg-deep: #0d1117;
  --footer-bg-panel: #141b24;
  --footer-accent: #c9a96e; /* warm gold */
  --footer-accent-2: #8bbdd9; /* soft blue */
  --footer-text: #d4cfc7; /* warm off-white — readable on dark */
  --footer-muted: #8a8a8a;
  --footer-divider: rgba(201, 169, 110, 0.2);
}

/* =========================================================
   FOOTER WRAPPER
   ========================================================= */
.premium-footer {
  background-color: var(--footer-bg-deep);
  color: var(--footer-text);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}

/* Subtle warm-ink watercolor texture overlay */
.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 40% at 85% 10%,
      rgba(201, 169, 110, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 60% at 10% 90%,
      rgba(139, 189, 217, 0.05) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   TOP GOLD RULE
   ========================================================= */
.footer-top-rule {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--footer-accent),
    transparent
  );
  margin-bottom: 0;
}

/* =========================================================
   FOOTER INNER LAYOUT
   ========================================================= */
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}

/* =========================================================
   MAIN GRID — 4 columns on desktop
   ========================================================= */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--footer-divider);
}

/* =========================================================
   BRAND COLUMN
   ========================================================= */
.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 1px 6px rgba(201, 169, 110, 0.25));
  transition: filter 0.3s ease;
}

.footer-logo-img:hover {
  filter: brightness(1.2) drop-shadow(0 2px 10px rgba(201, 169, 110, 0.45));
}

.footer-tagline {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--footer-accent);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.footer-brand-desc {
  color: var(--footer-text);
  font-size: 0.875rem;
  max-width: 300px;
  margin: 0;
  opacity: 0.85;
}

/* =========================================================
   COLUMN HEADINGS
   ========================================================= */
.footer-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--footer-accent) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--footer-divider);
}
#colophon.site-footer {
  display: none !important;
}

/* =========================================================
   NAV LINKS
   ========================================================= */
.footer-nav-list li {
  margin-bottom: 0.45rem;
}

.footer-nav-list a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
  opacity: 0.88;
}

.footer-nav-list a::before {
  content: "›";
  color: var(--footer-accent);
  font-weight: 700;
  transition: transform 0.25s ease;
}

.footer-nav-list a:hover {
  color: var(--footer-accent);
  opacity: 1;
  gap: 0.65rem;
}

.footer-nav-list a:hover::before {
  transform: translateX(3px);
}

/* =========================================================
   CONTACT COLUMN
   ========================================================= */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--footer-text);
  opacity: 0.88;
}

.footer-contact-list .contact-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  fill: var(--footer-accent);
  margin-top: 3px;
}

.footer-contact-list a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover {
  color: var(--footer-accent);
}

/* =========================================================
   SOCIAL ICONS
   ========================================================= */
.footer-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--footer-divider);
  background: rgba(255, 255, 255, 0.03);
  color: var(--footer-text);
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social-link:hover {
  background: var(--footer-accent);
  border-color: var(--footer-accent);
  color: #0d1117;
  transform: translateY(-3px);
}

.footer-social-link[href*="facebook"]:hover {
  background: #3b5998 !important;
  border-color: #3b5998 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(59, 89, 152, 0.4) !important;
}

.footer-social-link[href*="instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4) !important;
}

.footer-social-link[href*="youtube"]:hover {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.4) !important;
}

.footer-social-link[href*="pinterest"]:hover {
  background: #bd081c !important;
  border-color: #bd081c !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(189, 8, 28, 0.4) !important;
}

.footer-social-link[href*="mailto"]:hover {
  background: #319795 !important;
  border-color: #319795 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(49, 151, 149, 0.4) !important;
}

/* =========================================================
   BOTTOM BAR
   ========================================================= */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--footer-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.footer-made-with {
  font-size: 0.78rem;
  color: var(--footer-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-made-with svg {
  width: 12px;
  height: 12px;
  fill: #e74c3c;
  animation: footer-heartbeat 1.4s ease-in-out infinite;
}

@keyframes footer-heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.25);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
}

/* =========================================================
   RESPONSIVE — Tablet
   ========================================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   RESPONSIVE — Mobile
   ========================================================= */
@media (max-width: 640px) {
  .footer-inner {
    padding: 2.5rem 1.25rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-brand {
    grid-column: auto;
    text-align: center;
  }
  .footer-logo-wrap {
    display: block;
    text-align: center;
  }
  .footer-brand-desc {
    max-width: 100%;
  }
  .footer-social-row {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
