/* FONTS */
@font-face {
  font-family: "CandaraCustom";
  src: url("../fonts/candara-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CandaraCustom";
  src: url("../fonts/candara-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CandaraCustom";
  src: url("../fonts/candara-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


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

body {
  font-family: "CandaraCustom", Arial, sans-serif;
}

/* FOOTER */
.footer {
    background: #DBDAD9;
    color: #000000;
    font-size: 19px; /* было 14px */
    line-height: 1.45;
    width: 100%;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 32px;
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    font-size: 37px; /* было 28px */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 17px; /* было 13px */
    opacity: 0.85;
    margin-bottom: 24px;
    max-width: 240px;
}

/* .buttons-wrapper {
    margin-top: auto;
} */

/* .contact-button {
    width: 160px;
}  */

.btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: #F5A403;
    /* color: #3F3F46; */
    font-size: 16px; /* было 12px */
    font-weight: 700;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 12px;
}

.btn-circle:hover {
    background: #e09500;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 164, 3, 0.3);
}

.btn-circle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #3F3F46;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer__heading {
    font-size: 19px; /* было 14px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__list a {
    font-size: 18px; /* было 13.5px */
    /* color: #3F3F46; */
    text-decoration: none;
    opacity: 0.85;
    transition: 0.2s;
}

.footer__list a:hover {
    color: #F5A403;
    opacity: 1;
    text-decoration: underline;
}

/* contacts */
.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 18px; /* было 13.5px */
    opacity: 0.92;
}

.contact-emoji {
    font-size: 24px; /* было 18px */
    min-width: 24px;
}

.contact-text {
    line-height: 1.45;
}

.contact-text a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    color: #F5A403;
    text-decoration: underline;
}


.contact-text a:hover {
    text-decoration: underline;
}

.address-block {
    max-width: 240px;
}

.footer-buttons {
    display: flex;
    justify-content: space-between;
}

/* button */
.btn-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: #F9A800;
    color: #3F3F46;
    font-size: 16px; /* было 12px */
    font-weight: 700;
    border-radius: 6px;
}

.btn-offer:hover {
    opacity: 0.85;
}

/* bottom */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    font-size: 16px; /* было 12px */
    border-top: 1px solid #9DA3A6;
    letter-spacing: 1.2px;
}

.copyright {
    font-size: 15px; /* было 11px */
}

.legal-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.legal-links a {
    font-size: 15px; /* было 11px */
    color: #000;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.legal-links a:hover {
    color: #F5A403;
    text-decoration: underline;
}

/* responsive */
@media (max-width: 1000px) {
    .footer__grid {
        flex-direction: column;
        gap: 36px 28px;
    }
    .footer__tagline,
    .address-block {
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__col {
        padding-bottom: 16px;
    }

    .footer__col:last-child {
        border: none;
    }

    .btn-offer {
        width: 100%;
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .legal-links {
        justify-content: center;
        gap: 0;
    }
}
