/* Mobile First - Footer Styles */
.site-footer {
  background-color: #181818;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.footer-container {
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Main Footer Section */
.footer-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 48px 0 32px 0;
  border-top: 1px solid #fff1eb15;
  gap: 32px;
}

/* Top Section (Logo + Menu) - Mobile */
.footer-top-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* Logo Section */
.footer-logo-section {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.widget img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* Navigation Section */
.footer-nav-section {
  width: 100%;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  align-items: flex-start;
}

.footer-menu li {
  list-style: none;
  margin: 0;
  width: 100%;
}

.footer-menu a {
  color: #ffffff;
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.16px;
  text-decoration: none;
  display: block;
}

.footer-menu a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-menu .no-link {
  color: #ffffff;
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.16px;
  text-decoration: none;
  display: block;
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 0.5px;
  background-color: rgba(255, 241, 235, 0.15);
  margin: 0;
}

/* Bottom Section (Copyright + Legal + Email) - Mobile */
.footer-bottom-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.footer-copyright p {
  color: #ffffff;
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.16px;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-legal-item p {
  color: #ffffff;
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.16px;
  margin: 0;
}

.footer-legal-item a {
  color: #ffffff;
  text-decoration: none;
}

.footer-email p {
  color: #ffffff;
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.16px;
  margin: 0;
}

.footer-email a {
  color: #ffffff;
  text-decoration: none;
}

/* Tablet and up (768px+) */
@media (min-width: 768px) {
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-menu li {
    width: auto;
  }

  .footer-legal {
    flex-direction: row;
    gap: 24px;
  }
}

/* Desktop and up (1024px+) */
@media (min-width: 1024px) {
  .footer-main {
    padding: 25px 0;
    gap: 0;
  }

  /* Top Section: Logo Left, Menu Right */
  .footer-top-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 25px;
    gap: 0;
  }

  .footer-logo-section {
    width: auto;
  }

  .footer-nav-section {
    width: auto;
  }

  .footer-menu {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }

  .widget img {
    width: 122px;
  }

  /* Divider */
  .footer-divider {
    margin: 0;
  }

  /* Bottom Section: Copyright Left, Legal Center, Email Right */
  .footer-bottom-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 32px;
    gap: 0;
  }

  .footer-copyright {
    flex: 0 0 auto;
  }

  .footer-legal {
    flex: 1 1 auto;
    justify-content: center;
    flex-direction: row;
    gap: 24px;
  }

  .footer-email {
    flex: 0 0 auto;
  }
}
