@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Satisfy&display=swap');

/* ==========================================================================
   Boyomo Site Footer Styles
   ========================================================================== */

:root {
  --footer-bg: #ffffff;
  --footer-text-primary: #0f2e5a;
  --footer-text-secondary: #505b73;
  --footer-accent-orange: #ff5e14;
  --footer-accent-blue: #0050ff;
  --footer-divider-color: rgba(0, 0, 0, 0.06);
  --footer-font-sans: 'Poppins', sans-serif;
  --footer-font-cursive: 'Satisfy', cursive;
}

/* Reset / Base Footer Scope */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text-secondary);
  font-family: var(--footer-font-sans);
  padding: 80px 0 40px;
  border-top: 1px solid var(--footer-divider-color);
  width: 100%;
  box-sizing: border-box;
}

.site-footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Container */
.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Footer Content Row */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: nowrap;
}

/* Brand & Social Column */
.footer-brand-column {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1.5;
  max-width: 340px;
}

/* Floating Vertical Social Pill */
.footer-social-pill {
  background: #ffffff;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.social-pill-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-pill-link svg,
.social-pill-link svg path,
.social-pill-link svg polygon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-pill-link:hover {
  transform: translateY(-4px) scale(1.08);
}

/* Hover effects matching brand guidelines */
.social-pill-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 6px 15px rgba(220, 39, 67, 0.3);
}
.social-pill-link.instagram:hover svg path {
  fill: #ffffff;
}

.social-pill-link.linkedin:hover {
  background: #0077b5;
  box-shadow: 0 6px 15px rgba(0, 119, 181, 0.3);
}
.social-pill-link.linkedin:hover svg {
  fill: #ffffff;
}

.social-pill-link.facebook:hover {
  background: #1877f2;
  box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3);
}
.social-pill-link.facebook:hover svg {
  fill: #ffffff;
}

.social-pill-link.youtube:hover {
  background: #ff0000;
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.3);
}
.social-pill-link.youtube:hover svg path {
  fill: #ffffff;
}
.social-pill-link.youtube:hover svg polygon {
  fill: #ff0000;
}

/* Logo and description text area */
.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--footer-text-secondary);
  font-weight: 500;
}

/* General Link Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 110px;
}

.footer-column-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--footer-text-primary);
  position: relative;
  padding-top: 14px;
  display: inline-block;
}

/* Short orange horizontal bar above titles */
.footer-column-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 3px;
  background-color: var(--footer-accent-orange);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list li {
  line-height: 1.2;
}

.footer-links-list a {
  font-size: 14px;
  color: var(--footer-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--footer-accent-orange);
  transform: translateX(4px);
}

/* Navigation specific - right arrows alignment */
.footer-links-list.nav-arrows {
  width: 100%;
}

.footer-links-list.nav-arrows li {
  width: 100%;
}

.footer-links-list.nav-arrows a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-links-list.nav-arrows a::after {
  content: "\203A"; /* Single right angle bracket › */
  font-size: 18px;
  font-weight: 700;
  color: #cbd5e1;
  transition: all 0.25s ease;
  line-height: 1;
  margin-left: 10px;
}

.footer-links-list.nav-arrows a:hover::after {
  color: var(--footer-accent-orange);
  transform: translateX(3px);
}

/* Dotted Vertical Dividers */
.footer-vertical-divider {
  width: 1px;
  border-left: 1px dotted #cbd5e1;
  align-self: stretch;
  margin: 0 4px;
  flex-shrink: 0;
}

/* Contact Column details */
.footer-contact-column {
  flex: 1.2;
  min-width: 180px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 500;
  color: var(--footer-text-primary);
}

.footer-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: var(--footer-text-primary);
  transition: color 0.25s ease;
}

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

.contact-icon {
  color: var(--footer-text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

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

/* Footer Bottom Divider Line */
.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--footer-divider-color);
  margin: 40px 0 25px;
  width: 100%;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--footer-text-secondary);
  font-weight: 500;
}

/* Cursive Slogan Middle Wrapper */
.footer-slogan-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.slogan-spark {
  color: var(--footer-accent-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-slogan {
  font-family: var(--footer-font-cursive);
  font-size: 26px;
  display: inline-flex;
  gap: 6px;
  line-height: 1;
}

.slogan-bond-your {
  color: var(--footer-accent-orange);
  -webkit-text-stroke: 0.6px var(--footer-accent-orange);
}

.slogan-moment {
  color: #0044ff;
  -webkit-text-stroke: 0.6px #0044ff;
}

/* Policy Links Right */
.footer-policies {
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--footer-text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.policy-link:hover {
  color: var(--footer-accent-orange);
}

.policy-separator {
  color: #cbd5e1;
  font-size: 11px;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablet and Medium Screens (Max 1140px) */
@media (max-width: 1140px) {
  .footer-vertical-divider {
    display: none;
  }
  
  .footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .footer-brand-column {
    grid-column: span 3;
    max-width: 100%;
    margin-bottom: 15px;
    flex-direction: row;
  }
  
  .footer-column {
    grid-column: span 1;
  }
  
  .footer-contact-column {
    grid-column: span 1;
  }
}

/* Mobile Screens (Max 768px) */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  
  .footer-container {
    padding: 0 24px;
  }
  
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  
  .footer-brand-column {
    grid-column: span 2;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  
  .footer-social-pill {
    flex-direction: row;
    padding: 10px 20px;
    width: fit-content;
    gap: 18px;
  }
  
  .footer-column {
    grid-column: span 1;
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-column-title::before {
    left: 0;
    transform: none;
  }
  
  .footer-links-list.nav-arrows a {
    justify-content: flex-start;
  }
  
  .footer-links-list.nav-arrows a::after {
    display: none;
  }
  
  .footer-contact-list li {
    justify-content: flex-start;
    text-align: left;
  }
  
  .footer-contact-list li .contact-text {
    text-align: left;
  }
  
  .footer-contact-column {
    grid-column: span 2;
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-slogan-wrapper {
    order: -1;
    margin-bottom: 10px;
  }
  
  .footer-policies {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}

/* Small Mobile Screens (Max 576px) */
@media (max-width: 576px) {
  .site-footer {
    padding: 50px 0 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-brand-column {
    grid-column: span 1;
  }
  
  .footer-column {
    grid-column: span 1;
  }
  
  .footer-contact-column {
    grid-column: span 1;
  }
  
  .footer-slogan {
    font-size: 22px;
  }
  
  .slogan-spark svg {
    width: 18px;
    height: 18px;
  }
}

  

