/* ============================================================
   ELITE FOOTER — Lumè Nail Spa & Beauty Bar
   Premium dark footer with motion and rich hover states.
   ============================================================ */

.elite-footer {
  background: linear-gradient(180deg, #1f1412 0%, #160d0b 100%);
  padding: 120px 0 60px 0;
  color: #FAF7F4;
  position: relative;
  overflow: hidden;
}

.elite-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.elite-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}

/* Motion for Columns */
.footer-col {
  opacity: 0;
  transform: translateY(30px);
  animation: footerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

@keyframes footerFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Brand Column ── */
.elite-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.elite-footer__logo-wrap {
  display: inline-block;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(255,255,255,0.1));
}

.elite-footer__logo-img {
  width: auto;
  max-width: 190px;
  height: auto;
  max-height: 85px;
  display: block;
  object-fit: contain;
  transition: filter 0.3s ease;
}
.elite-footer__logo-img:hover {
  filter: drop-shadow(0 4px 16px rgba(255,255,255,0.25));
}

.elite-footer__tagline {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #E8E0D8;
}

.elite-footer__social-row {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.elite-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #FAF7F4;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}
.elite-footer__social-link svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  transition: stroke 0.3s ease;
}
.elite-footer__social-link:hover {
  background: #ba6d61;
  border-color: #ba6d61;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 20px rgba(186,109,97,0.4);
}
.elite-footer__social-link:hover svg {
  stroke: #FAF7F4;
}

/* ── Columns ── */
.elite-footer__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: #FAF7F4;
  margin: 0 0 16px 0;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}
.elite-footer__heading::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, #ba6d61, transparent);
  border-radius: 2px;
}

.elite-footer__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.elite-footer__link {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: #E8E0D8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}
.elite-footer__link::before {
  content: '→';
  position: absolute;
  left: -20px;
  color: #ba6d61;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 16px;
}
.elite-footer__link:hover {
  color: #ba6d61;
  transform: translateX(20px);
}
.elite-footer__link:hover::before {
  opacity: 1;
  left: -24px;
}

/* ── Contact ── */
.elite-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: #E8E0D8;
  line-height: 1.6;
}
.elite-footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.elite-footer__contact-item a:hover { color: #ba6d61; }
.elite-footer__contact-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #5e3b33 0%, #291a16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ba6d61;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.elite-footer__contact-icon svg { width: 16px; height: 16px; }

/* ── Hours Table ── */
.elite-footer__hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: #E8E0D8;
}
.elite-footer__hours-table tr {
  transition: background-color 0.3s ease;
}
.elite-footer__hours-table td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.elite-footer__hours-table tr:last-child td { border-bottom: none; }
.elite-footer__hours-table td:last-child { text-align: right; }

.highlight-today {
  background: rgba(186,109,97,0.15);
  border-radius: 6px;
}
.highlight-today td {
  border-bottom: 1px solid transparent !important;
}

.elite-footer__hours-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #ba6d61;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.elite-footer__hours-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: #ba6d61;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.elite-footer__hours-link:hover {
  color: #fff;
}
.elite-footer__hours-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background: #fff;
}

/* ── Newsletter ── */
.elite-footer__newsletter {
  margin-top: 40px;
}
.elite-footer__newsletter h5 {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.elite-footer__newsletter h5 svg {
  color: #ba6d61;
  opacity: 0.8;
}
.elite-footer__newsletter-form {
  display: flex;
  gap: 8px;
}
.elite-footer__newsletter-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 14px 24px;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  flex: 1;
  min-width: 0;
  outline: none;
  transition: all 0.3s ease;
}
.elite-footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.elite-footer__newsletter-input:focus { 
  border-color: #ba6d61; 
  box-shadow: 0 0 0 3px rgba(186,109,97,0.15);
  background: rgba(255,255,255,0.08);
}
.elite-footer__newsletter-btn {
  background: linear-gradient(135deg, #b86a5d, #9e5347);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0 28px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.elite-footer__newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(186,109,97,0.3);
}

/* ── Bottom Bar ── */
.elite-footer__bottom {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 50%, transparent) 1;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.elite-footer__bottom a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.elite-footer__bottom a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: #ba6d61;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.elite-footer__bottom a:hover {
  color: #fff;
}
.elite-footer__bottom a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Powered By ── */
.elite-footer__powered-by {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 8px;
  font-family: 'Jost', sans-serif;
}
.elite-footer__powered-by a {
  color: #C9A84C;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.5), 0 0 16px rgba(201, 168, 76, 0.3);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.elite-footer__powered-by a::after {
  display: none !important; /* Override default bottom link line */
}
.elite-footer__powered-by a:hover {
  color: #FFF;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(201, 168, 76, 0.8), 0 0 36px rgba(201, 168, 76, 0.6);
  transform: translateY(-1px) scale(1.02);
}

@media (max-width: 1024px) {
  .elite-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .elite-footer {
    padding: 60px 24px 40px !important;
  }
  .elite-footer__container {
    padding: 0;
  }
  .elite-footer__grid {
    display: flex !important;
    flex-direction: column;
    gap: 48px !important;
    text-align: center;
    margin-bottom: 40px !important;
  }
  .elite-footer__brand {
    align-items: center;
  }
  .elite-footer__logo-wrap {
    margin: 0 auto 16px;
  }
  .elite-footer__social-row {
    justify-content: center;
  }
  .elite-footer__heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .elite-footer__link {
    justify-content: center;
  }
  .elite-footer__link:hover {
    transform: none;
  }
  .elite-footer__link::before {
    display: none;
  }
  .elite-footer__contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .elite-footer__hours-table td:last-child {
    text-align: center;
  }
  .elite-footer__hours-table td {
    padding: 8px;
  }
  .elite-footer__newsletter h5 {
    justify-content: center;
  }
  .elite-footer__newsletter-form {
    flex-direction: column;
  }
  .elite-footer__newsletter-btn {
    padding: 16px;
  }
  .elite-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
