/* Footer */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background-color: #833F6D;
    color: white;
    padding: 1% 0;
    width: 100%;
    border-top: 2px solid white;
    box-sizing: border-box;
    z-index: 1;
    margin-top: auto;
}



.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

/* Footer links */
.footer-left {
    flex: 1;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    padding: 0;
    margin: 0;
    margin-left: 13%;
    margin-right: 0%;
}

.footer-links li {
    position: relative;
    padding-left: 12px;
    display: flex;
    align-items: center;
}

.footer-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-35%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.footer-links p {
    margin: 0;
    padding: 0;
    display: inline;
    font-family: 'Montserrat Armenian light';
    font-size: 12px;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.footer-links a:hover {
    color: #c1a2b3;
}

/* Contact info and logos */
.footer-right {
    margin-left: 10%;
    display: flex;
    align-items: center;
    gap: 15%;
    flex: 1.5;
    position: relative;
    justify-content: flex-start;

}

.contact-info {
    padding: 0 15%;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.contact-info p {
    font-size: 13px;
    font-family: 'Montserrat Armenian light';
    margin: 2px 0;
}

/* Logos */
.logos {
    display: flex;
    gap: 10px;
}

.logos img {
    height: 35px;
    object-fit: contain;
}

.second-logo {
    height: 40px;
}

/* @Yweb position */
.yweb-text {
    position: absolute;
    right: 5%;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;

}

.yweb-text .copyright {
    width: 10px;
    height: auto;
}

.yweb-text p {
    font-size: 12px;
    color: white;
    opacity: 0.7;
    font-family: 'Montserrat Armenian light';
}


/* Responsive */
/* Responsive Footer */
@media (max-width: 900px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 2% 5%;
      text-align: center;
  }
  .section-title{
    margin-top: 90px;
  }
  .footer-left,
  .footer-right {
      width: 100%;
      margin: 0;
      display: flex;
      justify-content: center;
  }

  .footer-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin: 0;
  }

  .footer-links li {
      padding-left: 8px;
  }

  .footer-links li::before {
      width: 5px;
      height: 5px;
      top: 50%;
      transform: translateY(-50%);
  }

  .footer-links p {
      font-size: 11px;
  }

  .footer-right {
      flex-direction: column;
      align-items: center;
      gap: 10px;
  }

  .contact-info {
      border: none;
      padding: 0;
  }

  .contact-info p {
      font-size: 12px;
  }

  .logos {
      justify-content: center;
      gap: 12px;
  }

  .logos img {
      height: 30px;
  }

  .second-logo {
      height: 35px;
  }

  .yweb-text {
      position: static;
      margin-top: 10px;
      justify-content: center;
  }

  .yweb-text p {
      font-size: 11px;
  }
}

@media (max-width: 480px) {
  .footer-links {
      gap: 10px;
  }

  .footer-links li {
      padding-left: 6px;
  }

  .footer-links p {
      font-size: 10px;
  }

  .contact-info p {
      font-size: 11px;
  }

  .logos img {
      height: 26px;
  }

  .second-logo {
      height: 30px;
  }

  .yweb-text p {
      font-size: 10px;
  }
}
