/**
 * Footer Styles
 * Site footer component
 */

/* Footer Section */
.site-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 45px 70px 100px;
    gap: 100px;
    background: var(--color-green-dark);
    border-radius: 25px 25px 0 0;
    color: var(--color-white);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-about {
    max-width: 250px;
}

/* Logo */
.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    width: 125px;
    height: auto;
}

/* Copyright */
.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-copyright-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #E1E1E1;
}

.footer-copyright-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    color: #E1E1E1;
}

/* Footer Title */
.footer-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--color-white);
    margin-bottom: 5px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #E1E1E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-green);
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-phone {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: var(--color-green);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-phone:hover {
    opacity: 0.8;
}

.footer-email {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--color-green);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .site-footer {
        padding: 40px 60px 80px;
        gap: 80px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-link,
    .footer-email,
    .footer-copyright-text,
    .footer-copyright-desc {
        font-size: 15px;
    }

    .footer-phone {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .site-footer {
        padding: 40px 50px 60px;
        gap: 50px;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 45%;
        min-width: 200px;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-title {
        font-size: 17px;
    }

    .footer-link,
    .footer-email,
    .footer-copyright-text,
    .footer-copyright-desc {
        font-size: 14px;
    }

    .footer-phone {
        font-size: 21px;
    }
}

@media (max-width: 900px) {
    .site-footer {
        padding: 35px 40px 55px;
        gap: 35px;
        flex-direction: column;
    }

    .footer-column {
        flex: 1 1 100%;
        width: 100%;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-link,
    .footer-email {
        font-size: 14px;
    }

    .footer-phone {
        font-size: 20px;
    }

    .footer-copyright-text,
    .footer-copyright-desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 25px;
        gap: 30px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 25px 25px 0 0;
    }

    .footer-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .footer-about {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .footer-logo img {
        width: 150px;
        margin: 0 auto;
    }

    .footer-copyright {
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-copyright-text,
    .footer-copyright-desc {
        text-align: center;
        font-size: 16px;
    }

    .footer-title {
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        width: 100%;
    }

    .footer-nav {
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .footer-nav a {
        text-align: center;
    }

    .footer-link {
        font-size: 16px;
        text-align: center;
        color: #E1E1E1;
    }

    .footer-contact-info {
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .footer-phone {
        font-size: 24px;
        text-align: center;
        color: var(--color-green);
    }

    .footer-email {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 25px 20px;
        gap: 22px;
    }

    .footer-column {
        gap: 12px;
    }

    .footer-logo img {
        width: 90px;
        margin-bottom: 8px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-copyright-text {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .footer-copyright-desc {
        font-size: 12px;
        line-height: 1.3;
    }

    .footer-link {
        font-size: 13px;
        line-height: 1.4;
    }

    .footer-phone {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .footer-email {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .site-footer {
        padding: 20px 15px;
        gap: 20px;
    }

    .footer-column {
        gap: 10px;
    }

    .footer-logo img {
        width: 80px;
        margin-bottom: 6px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .footer-copyright-text {
        font-size: 11px;
        margin-bottom: 3px;
    }

    .footer-copyright-desc {
        font-size: 11px;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer-phone {
        font-size: 17px;
        margin-bottom: 3px;
    }

    .footer-email {
        font-size: 12px;
    }
}
