/* ============================
   FOOTER STYLES — HATYLO
   ============================ */


.site-footer {
  background-image: var(--footer-bg-dark);
  box-sizing: border-box;
  border: 4px solid var(--text);
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px;
  margin: 80px auto 10px;
  max-width: 1280px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
html.theme-light .site-footer {
  background-image: var(--footer-bg-light);
}

/* коли <html class="theme-dark"> — явно темну */
html.theme-dark .site-footer {
  background-image: var(--footer-bg-dark);
}
/* ============================
   Theme Variants
   ============================ */





/* ============================
   Structure
   ============================ */

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  color: var(--text);
  text-transform: uppercase;
}
.custom-logo-link img.custom-logo {
max-width:250px;
  height: auto;
  width: 100%;
  display: block;
}

/* ============================
   Footer Menu
   ============================ */

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  list-style: none;
  align-items: center;
}

.footer-menu li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color .3s;
}

.footer-menu li a:hover {
  color: #FE8702;
}

/* ============================
   Contacts
   ============================ */

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-contacts .row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-contacts i {
  width: 24px;
  height: 24px;
  display: inline-block;
  mask-size: cover;
  -webkit-mask-size: cover;
}

.footer-contacts span {
  font-size: 16px;
  font-weight: 600;
  text-transform:uppercase;
}
.footer__label{
  font-size: 18px;
  font-weight: 600;
  text-transform:uppercase;
  text-decoration:none;
  color: var(--text);
}

/* ============================
   Social Icons
   ============================ */
.footer-socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer-socials a {
  color: var(--text);
  font-size: 40px;
  margin-left: 16px;
  transition: color 0.3s ease;
  text-decoration:none;
}
.row{
   font-size: 18px;
}
.footer-socials .row a {
  color: var(--text);
  font-size: 18px;
  margin-left: 16px;
  transition: color 0.3s ease;
  text-decoration:none;
}

.footer-socials a:hover {
  color: var(--accent);
}
.footer-custom-logo{
    display: flex;
    align-items: center;
    justify-content: center;
	width:100%;
}
/* Ховаємо все за замовчуванням */
.logo-light,
.logo-dark {
    display: none;
}

/* === THEME DARK → показуємо світлий логотип === */
html.theme-dark .logo-light {
    display: block;
}
html.theme-dark .logo-dark {
    display: none;
}

/* === THEME LIGHT → показуємо темний логотип === */
html.theme-light .logo-dark {
    display: block;
}
html.theme-light .logo-light {
    display: none;
}
/* ============================
   Footer Bottom Line
   ============================ */

.site-footer p {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  color: var(--text);
  opacity: 0.7;
}
.coryright{
	text-align: center;

}

/* ============================
   Responsive
   ============================ */

@media (max-width: 992px) {
   .site-footer {
     margin: 60px auto 10px;
	 max-width: 90%;

}
	
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-menu {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }
	.coryright{
    width: 60%;
    margin: 0 auto;
}
}
