/*
 * Styles for the footer section.
 */
footer.site-footer {
  background-color: #151515; }
  footer.site-footer .site-footer-inner {
    color: #ffffff;
    position: relative; }
    footer.site-footer .site-footer-inner .site-footer__container {
      max-width: 85%;
      margin: 0 auto; }
      @media (max-width: 480px) {
        footer.site-footer .site-footer-inner .site-footer__container {
          max-width: 100%; } }
    footer.site-footer .site-footer-inner .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: clamp(15px, 4vw, 40px);
      padding: clamp(40px, 6vw, 70px) 0;
      padding-bottom: 0; }

.site-footer-inner a:hover {
  color: #ffffff; }

.site-footer-inner .wp-block-social-links .wp-social-link {
  transition: transform 0.35s ease;
  border-radius: 50%;
  padding: 6px; }

.site-footer-inner .wp-block-social-links .wp-social-link:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 255, 255, 0.35) !important; }

.site-footer-inner .wp-block-navigation__container li {
  margin-bottom: 8px; }

.site-footer-inner .contact-list p {
  display: flex;
  align-items: center;
  gap: 12px; }

.site-footer-inner .contact-list span[class^="dashicons"] {
  font-size: 1.1rem; }

.site-footer-inner .site-footer__copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0; }
  .site-footer-inner .site-footer__copyright p {
    color: #fff;
    margin: 0; }

.site-footer-inner .scroll-top-button {
  position: fixed;
  right: 24px;
  bottom: 32px;
  border-radius: 50%;
  background-color: rgba(255, 122, 0, 0.9);
  box-shadow: 0 18px 35px rgba(255, 122, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 99; }

.site-footer-inner .scroll-top-button .wp-block-button__link {
  padding: 14px; }

.site-footer-inner .scroll-top-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 40px rgba(255, 122, 0, 0.45); }

@media (max-width: 640px) {
  .site-footer-inner .scroll-top-button {
    right: 16px;
    bottom: 24px; } }
/* -------------------------------------------------
   Footer Main Template Styles
   Styles extracted from template-parts/footer/main.php
-------------------------------------------------- */
.footer-content {
  margin: 0;
  padding: 35px 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--40); }

.footer-box {
  flex: 1 1 240px;
  padding: 0 var(--wp--preset--spacing--40) var(--wp--preset--spacing--50); }

.footer-brand-logo {
  margin: 0 0 12px; }
  .footer-brand-logo img {
    max-width: 150px;
    height: auto; }

.footer-box .site-footer__heading {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.3em;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  margin-top: 0; }
  .footer-box .site-footer__heading:after {
    display: block;
    content: "";
    margin-top: 5px;
    width: 55px;
    height: 1px;
    background-color: #c2df93; }

.site-footer__brand-description {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 30px; }

.footer-social-links {
  display: flex;
  gap: 12px;
  margin: var(--wp--preset--spacing--50) 0;
  padding: 0;
  list-style: none; }
  .footer-social-links li {
    background-color: #ffffff47;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .footer-social-links li a {
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%; }

li.site-footer__nav-item {
  margin-bottom: 8px; }
  li.site-footer__nav-item a {
    text-decoration: none;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: "Kanit", sans-serif;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300; }

.footer-region-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px; }

.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px; }

.footer-contact {
  list-style: none;
  margin: var(--wp--preset--spacing--40) 0 0;
  padding: 0;
  color: #e1e1e1; }
  .footer-contact li {
    margin-bottom: 10px; }
    .footer-contact li a {
      text-decoration: none;
      display: inline-block;
      color: rgba(255, 255, 255, 0.7) !important;
      font-family: "Kanit", sans-serif;
      font-size: 16px;
      line-height: 30px;
      font-weight: 300; }

.site-footer__copyright .wp-block-columns {
  margin: 0; }
.site-footer__copyright .wp-block-column {
  flex-basis: 100%;
  padding: var(--wp--preset--spacing--30) 0; }

.footer-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 99; }
  .footer-scroll-top__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 122, 0, 0.9);
    box-shadow: 0 18px 35px rgba(255, 122, 0, 0.35);
    color: #fff;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease; }
    .footer-scroll-top__link.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0); }
    .footer-scroll-top__link:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 40px rgba(255, 122, 0, 0.45); }
    .footer-scroll-top__link[aria-hidden="true"] {
      opacity: 0;
      visibility: hidden; }
  .footer-scroll-top__icon {
    font-size: 20px; }
  .footer-scroll-top__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0; }

@media (max-width: 640px) {
  .footer-scroll-top {
    right: 16px;
    bottom: 24px; } }
address {
  font-style: normal; }

span.site-footer__contact-text {
  text-decoration: none;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300; }

nav.site-footer__nav ul li a {
  text-decoration: none;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300; }

/*# sourceMappingURL=footer.css.map */
