/* ==========================================================================
   ART REVISIONIST FOOTER STYLES - Matching live site
   ========================================================================== */

.ar-footer {
  background-color: transparent;
  border-top: none;
  margin-top: 50px;
  padding: 0;
}

.ar-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Footer Section - Logo + Navigation */
.ar-footer__top {
  display: flex;
  gap: 65px;
  padding-top: 50px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(74, 84, 107, 0.1);
}

/* Brand Section (Logo + Description) */
.ar-footer__brand {
  flex: 0 0 40%;
  max-width: 40%;
}

.ar-footer__logo {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ar-footer__logo img {
  width: 76%;
  height: auto;
  margin: 0 auto;
}

.ar-footer__brand-title {
  font-family: "Raleway", Sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.1em;
  color: #000000;
  text-align: center;
  margin: 0 0 12px 0;
}

.ar-footer__brand-description {
  font-family: "Noto Sans", Sans-serif;
  font-weight: 300;
  color: #000000;
  text-align: center;
  margin: 0 -35px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Navigation Columns Container */
.ar-footer__columns {
  flex: 1;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.ar-footer__column {
  flex: 1;
  min-height: 255px;
  padding-top: 50px;
}

.ar-footer__column-title {
  font-family: "Raleway", Sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  color: #000000;
  margin: 0 0 15px 0;
}

.ar-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ar-footer__menu li {
  padding: 3px 0;
}

.ar-footer__menu a {
  font-family: "Noto Sans", Sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.ar-footer__menu a:hover {
  color: #D0B263;
}

/* Contact Section - Now under right column */
.ar-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.ar-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ar-footer__contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #D0B263;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ar-footer__contact-icon svg {
  width: 19px;
  height: 19px;
  fill: #000000;
}

.ar-footer__contact-title {
  font-family: "Raleway", Sans-serif;
  font-size: 1em;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}

/* Copyright Section */
.ar-footer__bottom {
  border-top: 1px solid #6B6B6B;
  margin-top: 30px;
  padding: 45px 0;
  text-align: right;
}

.ar-footer__copyright {
  font-family: "Noto Sans", Sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #030303;
  margin: 0;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .ar-footer__top {
    gap: 28px;
  }

  .ar-footer__brand-title {
    font-size: 1.1em;
  }

  .ar-footer__column-title {
    font-size: 0.9em;
  }

  .ar-footer__contact-icon {
    width: 35px;
    height: 35px;
  }

  .ar-footer__contact-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ar-footer__top {
    flex-direction: column;
    padding-top: 30px;
  }

  .ar-footer__brand {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  .ar-footer__logo img {
    width: 59%;
  }

  .ar-footer__brand-title {
    font-size: 1.1em;
    padding: 0 40px;
  }

  .ar-footer__brand-description {
    margin: 0;
  }

  .ar-footer__columns {
    flex-direction: column;
    gap: 0;
  }

  .ar-footer__column {
    padding-top: 30px;
    min-height: auto;
    text-align: center;
  }

  .ar-footer__column-title {
    font-size: 1.1em;
  }

  .ar-footer__menu {
    text-align: center;
  }

  .ar-footer__contact {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .ar-footer__contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 30px;
  }

  .ar-footer__contact-icon {
    width: 40px;
    height: 40px;
  }

  .ar-footer__contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .ar-footer__bottom {
    text-align: center;
  }
}
