/**
 * Footer Styles
 * Main footer grid and copyright bar
 */

.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo img {
    height: 50px;
    margin-bottom: 16px;
}

.footer__tagline {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    transition: all 0.2s;
}

.footer__social a:hover {
    background: #d4488e;
}

.footer__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: #d4488e;
}

.footer__contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contact li {
    margin-bottom: 12px;
}

.footer__contact a,
.footer__location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__contact a:hover {
    color: #d4488e;
}

.footer__contact svg {
    flex-shrink: 0;
    color: #d4488e;
}

.footer__email-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s;
}

.footer__email-btn:hover {
    color: #d4488e;
}

.footer__email-btn svg {
    flex-shrink: 0;
    color: #d4488e;
}

.footer__bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer__legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__legal a {
    color: #888;
    font-size: 13px;
    text-decoration: none;
}

.footer__legal a:hover {
    color: #d4488e;
}

.footer__separator {
    color: #444;
}

/* Copyright Bar */
.copyright-bar {
    background: #111;
    padding: 16px 0;
    text-align: center;
}

.copyright-bar p {
    color: #666;
    font-size: 12px;
    margin: 0;
}

.copyright-bar a {
    color: #888;
    text-decoration: none;
}

.copyright-bar a:hover {
    color: #d4488e;
}

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

    .footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__links ul,
    .footer__contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__contact a,
    .footer__location {
        justify-content: center;
    }

    .footer__legal {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
        align-items: center;
    }

    .footer__legal a {
        white-space: nowrap;
    }

    .footer__separator {
        display: inline;
        color: #555;
    }
}

/* ===== MOBILE FOOTER (768px and below): ACCORDION STYLE ===== */
@media (max-width: 768px) {
    .footer__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* Brand section - CENTERED */
    .footer__brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 20px 28px 20px !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.12) !important;
    }

    .footer__logo {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 0 20px 0 !important;
    }

    .footer__logo img {
        height: 44px !important;
        width: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .footer__tagline {
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 0 24px 0 !important;
    }

    .footer__social {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .footer__social a {
        width: 48px !important;
        height: 48px !important;
    }

    /* Accordion sections */
    .footer__links,
    .footer__contact {
        border-bottom: 1px solid rgba(255,255,255,0.12) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Accordion header - clickable title */
    .footer__title {
        margin-bottom: 0 !important;
        padding: 18px 20px !important;
        cursor: pointer !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .footer__title::after {
        content: '' !important;
        width: 8px !important;
        height: 8px !important;
        border-right: 2px solid rgba(255,255,255,0.6) !important;
        border-bottom: 2px solid rgba(255,255,255,0.6) !important;
        transform: rotate(45deg) !important;
        transition: transform 0.3s ease !important;
        flex-shrink: 0 !important;
    }

    .footer__title.is-expanded::after {
        transform: rotate(-135deg) !important;
    }

    /* Accordion content - hidden by default */
    .footer__links ul,
    .footer__contact ul {
        display: none !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 0 18px 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .footer__links ul.is-expanded,
    .footer__contact ul.is-expanded {
        display: flex !important;
    }

    .footer__contact a,
    .footer__location,
    .footer__email-btn {
        justify-content: center !important;
    }
}
