/* =====================================
   Linglobe Footer
===================================== */

.ll-footer {
  margin-top: 80px;
  background: #20262e;
  color: #fff;
}

.ll-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 32px;
}

/* Region Columns */
.ll-footer-regions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ll-footer-column h3 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.ll-footer-column a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ll-footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Brand / SNS */
.ll-footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 24px;
}

.ll-footer-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.ll-footer-logo span {
  font-family: "Cal Sans", sans-serif; 
  color: #1E90FF;
  font-size: 2rem;
  font-weight: 400;
}

.ll-footer-logo small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.ll-footer-sns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ll-footer-sns a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ll-footer-sns a:hover {
  background: #1E90FF;
  transform: translateY(-3px);
}

/* Footer Nav */
.ll-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ll-footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.ll-footer-nav a:hover {
  color: #fff;
}

/* Credit */
.ll-footer-credit {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ll-footer-credit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.7;
}


/* =====================================
   Responsive
===================================== */

@media (max-width: 1100px) {
  .ll-footer-regions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ll-footer {
    margin-top: 56px;
  }

  .ll-footer-inner {
    padding: 44px 22px 30px;
  }

  .ll-footer-regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    padding-bottom: 38px;
  }

  .ll-footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0 22px;
  }

  .ll-footer-logo span {
    font-size: 1.75rem;
  }

  .ll-footer-sns a {
    width: 40px;
    height: 40px;
  }

  .ll-footer-nav {
    gap: 16px 22px;
  }
}

@media (max-width: 480px) {
  .ll-footer-regions {
    grid-template-columns: 1fr;
  }

  .ll-footer-column h3 {
    font-size: 0.95rem;
  }

  .ll-footer-column a {
    font-size: 0.9rem;
  }

  .ll-footer-brand-row {
    align-items: center;
    text-align: center;
  }

  .ll-footer-sns {
    justify-content: center;
    width: 100%;
  }

  .ll-footer-nav {
    justify-content: center;
    text-align: center;
  }

  .ll-footer-credit {
    text-align: center;
  }
}