

.site-footer {
  width: 100%;
  min-height: 660px;
  position: relative;
  background: linear-gradient(180deg, #011d39 0%, black 100%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 0;
  box-sizing: border-box;
}

.footer-positioning-container {
  width: 1316px;
  max-width: 95%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-top-section {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer-brand-info {
  flex-basis: 50%;
  min-width: 300px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.footer-brand-title {
  color: white;
  font-size: 60px;
  font-family: 'Blippo Local', Unbounded, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  word-wrap: break-word;
}

.footer-brand-tagline {
  width: auto;
  max-width: 400px;
  color: white;
  font-size: 12px;
  font-family: Unbounded, sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
  word-wrap: break-word;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-end;
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  background: none;
  border-radius: 50%;
  padding: 4px;
  object-fit: contain;
  display: block;
  border: none;
}

.footer-middle-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer-subscribe-and-apps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  flex-basis: 40%;
  min-width: 280px;
}

.footer-subscribe-button {
  padding: 12px 25px;
  border-radius: 10px;
  border: 1px white solid;
  justify-content: flex-start;
  align-items: center;
  gap: 9px;
  display: inline-flex;
  text-decoration: none;
}

.footer-subscribe-text {
  color: #f5f5f5;
  font-size: 16px;
  font-family: Unbounded, sans-serif;
  font-weight: 400;
}

.footer-subscribe-icon-img {
  width: 20px;
  height: 20px;
}

.footer-app-links-section {
  display: flex;
  gap: 23px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-app-link-img {
  height: 50px;
}

.footer-menus-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-end;
  flex-basis: 55%;
  min-width: 300px;
}

.footer-menu-column {
  min-width: 150px;
  padding: 0;
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.footer-menu-title {
  color: #ffef2b;
  font-size: 16px;
  font-family: Unbounded, sans-serif;
  font-weight: 400;
}

.footer-menu-links {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.footer-menu-link {
  color: white;
  font-size: 14px;
  font-family: Unbounded, sans-serif;
  font-weight: 300;
  text-decoration: none;
}

.footer-bottom-section {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-bottom-bar {
  width: 100%;
  height: 1px;
  background: rgb(255 255 255 / 20%);
  margin-bottom: 15px;
  display: none;
}

.footer-copyright-section {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright-text {
  color: #a9a9a9;
  font-size: 12px;
  font-family: Unbounded, sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
}

.footer-legal-links {
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: #a9a9a9;
  font-size: 12px;
  font-family: Unbounded, sans-serif;
  font-weight: 300;
  letter-spacing: 0.12px;
  text-decoration: none;
}

@media (width <= 768px) {
  .footer-top-section,
  .footer-middle-section,
  .footer-copyright-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand-info,
  .footer-social-links,
  .footer-subscribe-and-apps,
  .footer-menus-section,
  .footer-legal-links {
    justify-content: center;
    align-items: center;
    flex-basis: 100%;
  }

  .footer-brand-title {
    font-size: 40px;
  }
  
  .footer-middle-section {
    gap: 30px;
  }
  
  .footer-menus-section {
    gap: 25px;
  }
  
  .footer-menu-column {
    align-items: center;
  }
  
  .footer-legal-links {
    gap: 20px;
  }
}

@media (width <= 480px) {
  .footer-brand-title {
    font-size: 32px;
  }

  .site-footer {
    padding-top: 20px;
  }

  .footer-menu-column {
    align-items: center;
  }
  
  .footer-top-section {
    gap: 25px;
  }
  
  .footer-middle-section {
    gap: 20px;
  }
  
  .footer-menus-section {
    gap: 20px;
  }
  
  .footer-menu-links {
    gap: 12px;
  }
  
  .footer-menu-link {
    font-size: 13px;
  }
  
  .footer-legal-links {
    gap: 15px;
  }
  
  .footer-legal-link {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .footer-brand-title {
    font-size: 28px;
  }
  
  .footer-brand-tagline {
    font-size: 13px;
  }
  
  .footer-top-section {
    gap: 20px;
  }
  
  .footer-middle-section {
    gap: 15px;
  }
  
  .footer-menus-section {
    gap: 15px;
  }
  
  .footer-menu-title {
    font-size: 14px;
  }
  
  .footer-menu-links {
    gap: 10px;
  }
  
  .footer-menu-link {
    font-size: 12px;
  }
  
  .footer-legal-links {
    gap: 12px;
  }
  
  .footer-legal-link {
    font-size: 10px;
  }
  
  .footer-copyright-text {
    font-size: 11px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .footer-top-section {
    flex-direction: row;
    gap: 30px;
  }
  
  .footer-middle-section {
    flex-direction: row;
    gap: 30px;
  }
  
  .footer-menus-section {
    flex-direction: row;
    gap: 30px;
  }
}

@media (max-height: 600px) {
  .site-footer {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .footer-top-section {
    gap: 20px;
  }
  
  .footer-middle-section {
    gap: 20px;
  }
}
