/**
 * Footer styles for Kramall Studio
 */

.site-footer {
  background-color: #3d3d3d;
  color: #ffffff;
  padding: 60px 0;
  min-height: 250px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 300;
  font-size: 16px;
}

.footer-company-name h3 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Footer logo and menu section */
.footer-left {
  flex: 0 0 30%;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-logo-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

#footer-menu .current-menu-item a {
  font-weight: 400;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* Footer contacts and info section */
.footer-right {
  flex: 0 0 30%;
  text-align: right;
}

.footer-address {
  margin-bottom: 20px;
  line-height: 1.6;
  font-style: normal;
}

.footer-contacts {
  margin-bottom: 20px;
}

.footer-contacts a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: opacity 0.3s ease;
}

.footer-contacts a:hover {
  opacity: 0.7;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.7;
}

/* Footer social icons */
.footer-social {
  display: flex;
  margin-top: 30px;
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* background-color: rgba(255, 255, 255, 0.1); */
  margin-right: 10px;
  /* transition: background-color 0.3s ease; */
}

.social-icon:hover {
  background-color: rgb(255 255 255 / 10%);
  scale: 1.15;
}

.social-icon img,
.social-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .footer-right {
    text-align: left;
  }
}
