/* =================================
   FOOTER STYLES
   ================================= */

.site-footer {
    background-color: var(--primary-black);
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 30px;
    margin: 0 100px;
    font-family: 'Sora', sans-serif;
}

.site-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Footer Top (Columns) */
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 80px;
}

/* Brand Column */
.footer-logo-text {
    font-family: 'Good Times', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.footer-contact .contact-item i {
    color: var(--primary-green, #658c48);
    /* Fallback green if variable is missing */
    margin-top: 4px;
}

.footer-contact .contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: var(--primary-green, #658c48);
}

/* Menu Columns */
.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 20px;
    color: var(--paragraph-color);
    font-size: 14px;
    line-height: 1.5;
}

.footer-menu li a {
    color: var(--paragraph-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #ffffff;
}

/* Footer Middle */
.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-shape {
    position: relative;
}

.shape-box img {
    width: 150px;
    height: 150px;
}



.footer-social-section {
    text-align: center;
}

.footer-social-section h3 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-social-section p {
    color: var(--paragraph-color);
    font-size: 14px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary-green, #658c48);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 12px;
    color: #666666;
}

.credits {
    text-align: right;
}

.credits-label {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.credits-text {
    font-size: 12px;
    color: var(--paragraph-color);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer {
        margin: 0 30px;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-logo-text {
        font-size: 15px;
        margin-top: 20px;
    }

    .footer-column.menu-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column.menu-column h3 {
        margin-bottom: 0;
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .footer-column.menu-column h3::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .footer-column.menu-column.is-open h3::after {
        content: '\f106';
        transform: rotate(180deg);
    }

    .footer-middle {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-column.menu-column .footer-menu {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
    }

    .footer-column.menu-column.is-open .footer-menu {
        max-height: 500px;
        margin-bottom: 20px;
        opacity: 1;
    }

    .footer-shape {
        display: none;
        /* Hide complex shape on mobile if needed */
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .credits {
        text-align: center;
    }
}