@charset "UTF-8";
/* =====================================================
   FOOTER STYLES - ADELE ARCHEL
   Secure, Accessible, Responsive, No Hover Text Change
   ===================================================== */

/* -------------------------------
   GENERAL LAYOUT
--------------------------------*/
footer.footer {
  background-color: #ffffff;
  color: #333;
  font-family: "Arimo", Arial, sans-serif;
  width: 100%;
  padding: 60px 150px 40px;
  border-top: 1px solid #e0e0e0;
  box-sizing: border-box;
}

/* Grid Layout */
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  align-items: start;
}

/* Column Base */
.footer-col {
  min-width: 200px;
  word-wrap: break-word;
}

/* -------------------------------
   LOGO
--------------------------------*/
.footer-logo img {
  max-width: 160px;
  height: auto;
  margin-left: -10px;
  margin-bottom: 14px;
  display: block;
}

/* -------------------------------
   HEADINGS & TEXT
--------------------------------*/
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #222;
  letter-spacing: 0.3px;
  text-align: left;
}

.footer-col p,
.footer-col a,
.footer-menu li {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  text-decoration: none;
}

.footer-col p {
  margin: 4px 0;
}

/* -------------------------------
   MENUS
--------------------------------*/
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer-menu li {
  margin-bottom: 6px;
  padding: 0;
}

.footer-menu li a {
  display: block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* No color change on hover */
.footer-menu li a:hover,
.footer-menu li a:focus {
  color: #333;
  text-decoration: none;
}

/* Hide nested submenus */
.footer-menu ul {
  display: none;
}

/* -------------------------------
   SOCIAL ICONS
--------------------------------*/
.footer-col .social-icons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-decoration: none;
  background-color: var(--Adele-orange, #f60);
  color: #fff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icons a i {
  font-size: 18px;
  line-height: 1;
}

/* Hover effect for social icons only */
.social-icons a:hover,
.social-icons a:focus {
  background-color: #40BFC1;
  color: #fff;
  transform: translateY(-2px);
}

/* -------------------------------
   SUBSCRIBE BOX
--------------------------------*/
.subscribe-box {
  display: flex;
  flex-direction: column;
}

.subscribe-box input[type="email"],
.subscribe-box input[type="text"],
.subscribe-box textarea,
.subscribe-box .wpforms-field input,
.subscribe-box .wpcf7 input[type="email"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.subscribe-box input:focus,
.subscribe-box textarea:focus {
  border-color: var(--Adele-orange, #f60);
  outline: none;
}

/* Subscribe Button */
.subscribe-box button,
.subscribe-box input[type="submit"],
.subscribe-box .wpforms-submit,
.subscribe-box .wpcf7 input[type="submit"] {
  padding: 12px 22px;
  background-color: #69c1c0;
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.subscribe-box button:hover,
.subscribe-box input[type="submit"]:hover,
.subscribe-box .wpforms-submit:hover,
.subscribe-box .wpcf7 input[type="submit"]:hover {
  background-color: #57aaa9;
  transform: translateY(-2px);
}

/* -------------------------------
   FOOTER BOTTOM
--------------------------------*/
.footer-bottom {
  width: 100%;
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #555;
  background-color: #fff;
}

/* -------------------------------
   ALIGNMENT FIX (SERVICES, LINKS)
--------------------------------*/
.footer-col h4,
.footer-menu {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

.footer-col .footer-menu li a {
  padding-left: 0;
  margin-left: 0;
  text-align: left;
  color: #333;
}

/* -------------------------------
   ACCESSIBILITY
--------------------------------*/
.footer a:focus-visible {
  outline: 2px dashed var(--Adele-orange, #f60);
  outline-offset: 2px;
}

/* -------------------------------
   RESPONSIVE LAYOUT
--------------------------------*/
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  footer.footer {
    padding: 30px 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-col {
    margin-bottom: 20px;
  }
  .footer-logo img {
    max-width: 140px;
	  margin-left: -25px;
  }
  .social-icons {
    justify-content: flex-start;
  }
}

/* -------------------------------
   HIGH CONTRAST MODE
--------------------------------*/
@media (prefers-contrast: more) {
  .footer-col a:hover {
    color: #000;
    text-decoration: underline;
  }
  .subscribe-box button {
    border: 1px solid #000;
  }
}

/* -------------------------------
   FORCE LEFT ALIGN (FINAL)
--------------------------------*/
footer.footer,
footer.footer * {
  box-sizing: border-box;
}

footer.footer .footer-col ul,
footer.footer .footer-col .footer-menu,
footer.footer .footer-col .menu,
footer.footer .footer-col nav {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

footer.footer .footer-col h4 {
  margin-bottom: 10px !important;
  text-align: left !important;
}

footer.footer .footer-col .footer-menu li {
  margin: 6px 0 !important;
  padding: 0 !important;
}
/* ======================================
   FOOTER LINK HOVER COLOR (ENABLED)
   ====================================== */

/* Default state */
footer.footer .footer-col .footer-menu li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover + Focus state */
footer.footer .footer-col .footer-menu li a:hover,
footer.footer .footer-col .footer-menu li a:focus {
  color: #40BFC1;                /* teal accent color */
  text-decoration: none;         /* no underline */
  transition: color 0.3s ease;
}
