/*************************** FOOTER *************************************/

.site-footer {
  background: #fff;
  border-top: 1px solid #ccc;
  font-size: 14px;
  color: #000;
}

/* ============================================================
   FOOTER TOP (SKY BLUE CTA SECTION)
============================================================ */

.footer-top-wrap {
  background-color: #87ceeb;
  width: 100%;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left column */
.footer-top-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Right column */
.footer-top-right {
  max-width: 520px;
}

/* Motto card - Bold & Impactful */
.footer-motto {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #fff;
  background: linear-gradient(135deg, #5a3a1e 0%, #7a522e 50%, #5a3a1e 100%);
  border: none;
  padding: 25px 35px;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(90, 58, 30, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-motto::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s infinite;
}

.footer-motto br {
  display: block;
  margin: 12px 0;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}


/* Logo card */
.footer-logo {
  height: 60px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 13px;
  border-radius: 4px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  color: #000;
  font-size: 16px;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

/* ============================================================
   FOOTER INFO SECTION (MENU / CONTACT / BANK)
============================================================ */

.footer-info {
  background-color: #87ceeb;
  width: 100%;
}

.footer-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch; /* ensures equal column height */
}

/* Shared text color */
.footer-info,
.footer-info p,
.footer-info a,
.footer-info li {
  color: #000;
}

/* Footer columns */
.footer-col {
  display: flex; /* required for equal-height inner boxes */
}

.footer-inner-col {
  flex: 1; /* 🔑 makes all bordered boxes equal height */
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px;
}

/* Headings */
.footer-col h4 {
  font-size: 15px;
  margin-bottom: 12px;
}

/* Menu list */
.footer-col ul {
  list-style: disc;
  padding-left: 20px;
}

.footer-col ul li::marker {
  color: #5a3a1e;      /* brand color */
  font-size: 0.85em;
}


.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Small text */
.small-text {
  font-size: 13px;
  color: #555;
}

/* ============================================================
   FOOTER BOTTOM (CHOCOLATE BAR)
============================================================ */

.footer-bottom {
  background-color: #5a3a1e;
  padding: 14px 12px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #fff;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  color: #fff;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 900px) {
  .footer-info-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-top-left {
    align-items: center;
  }

  .footer-top-right {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .footer-info-inner {
    text-align: center;
  }

  .footer-col ul {
    list-style-position: inside;  /* 🔑 key fix */
    padding-left: 0;
  }
}


@media (max-width: 600px) {
  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE – FOOTER INFO (MOBILE)
============================================================ */
@media (max-width: 900px) {
  .footer-info-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-col {
    align-items: flex-start;
  }

  /* Center ONLY the headings */
  .footer-col h4 {
    text-align: center;
    margin-left: -12px;   /* counteracts padding for perfect centering */
  }

  /* Push non-heading content to the right */
  .footer-inner-col {
    padding-left: 35px;   /* 🔑 visual indentation */
  }

  /* Bullet spacing */
  .footer-col ul {
    list-style-position: outside;
    padding-left: 18px;
  }
}
