/* ================================================================
   footer_style.css — Alizay Beauty Salon footer
   Matches the purple gradient brand theme from home.css
   ================================================================ */

/* Ensure page body fills the viewport so footer stays at the bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main, .page-content {
  flex: 1;
}

/* ================================================================
   FOOTER MAIN AREA
   ================================================================ */
.ab-footer {
  background: linear-gradient(160deg, #1e0a36 0%, #3b0764 30%, #5b21b6 65%, #4c1d95 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: auto;
  width: 100%;
}

.ab-footer__main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Brand column ───────────────────────────────────── */
.ab-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ab-footer__logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
.ab-footer__logo:hover { opacity: 0.85; }

.ab-footer__tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  max-width: 320px;
}

/* ── Social icons ───────────────────────────────────── */
.ab-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ab-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196, 181, 253, 0.10);   /* lavender tint */
  border: 1px solid rgba(196, 181, 253, 0.40); /* #c4b5fd border */
  color: #c4b5fd;                           /* light purple icon */
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease,
              color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.ab-footer__social-link svg {
  width: 16px;
  height: 16px;
}
.ab-footer__social-link:hover {
  background: #f59e0b;                      /* brand gold fill */
  border-color: #f59e0b;
  color: #1e0a36;                           /* deep purple icon on gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.40);
}

/* ── Section headings ───────────────────────────────── */
.ab-footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196, 181, 253, 0.25);
}

/* ── Quick links ────────────────────────────────────── */
.ab-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ab-footer__links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.ab-footer__links li a::before {
  content: '›';
  color: #c4b5fd;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.ab-footer__links li a:hover {
  color: #ffffff;
  text-decoration: none;
}
.ab-footer__links li a:hover::before { transform: translateX(3px); }

/* ── Opening hours ──────────────────────────────────── */
.ab-footer__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-footer__hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ab-footer__hours li:last-child { border-bottom: none; }

.ab-footer__hours-day {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.ab-footer__hours-time {
  color: #c4b5fd;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Address / Find us ──────────────────────────────── */
.ab-footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.ab-footer__address-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.ab-footer__address-row span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Book CTA in footer ─────────────────────────────── */
/* Scoped button — covers pages where home.css is not loaded */
.ab-footer .ab-btn {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}
.ab-footer__book-cta .ab-btn--outline {
  border-color: rgba(196, 181, 253, 0.5);
  color: #c4b5fd;
}
.ab-footer__book-cta .ab-btn--outline:hover {
  background: rgba(196, 181, 253, 0.15);
  border-color: #c4b5fd;
  color: #ffffff;
}

/* ================================================================
   FOOTER BOTTOM BAR
   ================================================================ */
.ab-footer__bottom {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.18);
}

.ab-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-footer__copy,
.ab-footer__made {
  margin: 0;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .ab-footer__main { padding: 48px 0 36px; }
  .ab-footer__tagline { max-width: 100%; }
}

@media (max-width: 767px) {
  .ab-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .ab-footer__social { justify-content: flex-start; }
}

@media (max-width: 575px) {
  .ab-footer__main { padding: 40px 0 28px; }
  .ab-footer__logo { height: 44px; }
}
                        background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
                        
                        padding: 60px 20px;
                        margin-top: auto;
                        text-align: center;
                        color: white;
                        font-size: 14px;
                        width: 100%;
                        
                    }
                    .footer-container {
                        display: flex;
                        flex-direction: row;
                        background-color: rgba(0, 0, 0, 0.1);
                        justify-content: space-evenly;
                        gap: 10px;
                        border-radius: 8px;
                    }
                    .footer-container div {
                        flex: 1;
                        padding: 20px;
                        min-width: 0;
                        margin: 10px;
                        justify-content: space-evenly;
                        text-align: center;  
                        font-size: 16px;
                    }
                    .footer h5 {
                        font-weight: bold;
                        margin-bottom: 20px;
                        font-size: 20px;
                    }
                    .footer p {
                        margin: 10px 0;
                        line-height: 1.6;
                    }
                    .footer-links {
                        margin: 20px 0;
                    }
                    .footer-links a {
                        color: white;
                        text-decoration: none;
                        margin: 0 15px;
                        transition: opacity 0.3s;
                    }
                    .footer-links a:hover {
                        opacity: 0.8;
                    }

                    @media (max-width: 991.98px) {
                        .footer {
                            padding: 40px 14px;
                        }

                        .footer-container {
                            flex-wrap: wrap;
                            justify-content: center;
                        }

                        .footer-container div {
                            flex: 1 1 280px;
                            margin: 6px;
                            padding: 14px;
                            font-size: 15px;
                        }

                        .footer-links a {
                            display: inline-block;
                            margin: 6px 10px;
                        }
                    }

                    @media (max-width: 575.98px) {
                        .footer {
                            font-size: 13px;
                            padding: 30px 10px;
                        }

                        .footer-container {
                            flex-direction: column;
                            gap: 6px;
                        }

                        .footer-container div {
                            width: 100%;
                            margin: 0;
                            font-size: 14px;
                            text-align: left;
                        }

                        .footer-links {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            gap: 6px 12px;
                        }

                        .footer-links a {
                            margin: 0;
                        }
                    }
                