/* -------------------------------------------------------
   PREMIUM FOOTER REVAMP (THE TABERNACLE)
   ------------------------------------------------------- */

.footer-cinema {
    background: radial-gradient(circle at top, #0c0f16 0%, #05070a 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

/* Subtle Top Glow */
.footer-cinema::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
    box-shadow: 0 0 20px #c5a059;
    opacity: 0.3;
}

.footer-cinema .ft-top-altar {
    text-align: center;
    padding: 140px 0 100px;
}

.footer-cinema .ft-msg {
    font-family: serif;
    /* Fallback to serif, ideally var(--font-serif) */
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.footer-cinema .ft-msg i {
    color: #c5a059;
    font-style: italic;
}

.footer-cinema .ft-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.ft-seal-col {
    padding-right: 60px;
}

.footer-cinema .ft-logo-small {
    width: 50px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.footer-cinema .ft-seal-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
}

.footer-cinema .ft-col-title {
    font-family: sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #c5a059;
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-cinema .ft-links {
    list-style: none;
    padding: 0;
}

.footer-cinema .ft-links li {
    margin-bottom: 15px;
}

.footer-cinema .ft-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
}

.footer-cinema .ft-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c5a059;
    transition: width 0.3s ease;
}

.footer-cinema .ft-links a:hover {
    color: #ffffff;
}

.footer-cinema .ft-links a:hover::after {
    width: 100%;
}

.footer-cinema .ft-contact-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
}

.footer-cinema .ft-bottom

/* ─── FOOTER BOTTOM ─── */
.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px;
}

.ft-bottom-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.ft-copyright {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ft-tagline {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.ft-social-row {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.ft-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.ft-social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.4s ease;
}

.ft-social-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.ft-social-btn:hover svg {
    transform: scale(1.1);
}

/* Contact Icons (Replacing Emojis) */
.ft-contact-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 20px;
    display: block;
}

/* Mobile Adjustments for Footer */
@media (max-width: 768px) {
    .ft-top-altar {
        padding: 60px 20px;
        text-align: center;
    }

    .ft-msg {
        font-size: 2.5rem;
    }

    .ft-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .ft-seal-col {
        max-width: 100%;
    }

    .ft-logo-small {
        margin: 0 auto 30px;
    }

    .ft-bottom-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .ft-social-row {
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .footer-cinema .ft-main-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .ft-seal-col {
        grid-column: span 3;
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer-cinema .ft-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .ft-seal-col {
        grid-column: span 1;
    }

    .footer-cinema .ft-bottom-inner {
        flex-direction: column-reverse;
        gap: 30px;
    }
}