/* static/css/components/footer.css */

/* LUXURY CTA Overrides */
.luxury-cta {
    background-color: var(--color-primary);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid #222;
    border-bottom: 4px solid var(--color-secondary); /* Solid gold grounding base */
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gold-text {
    color: var(--color-secondary);
    font-style: italic;
    font-weight: 500;
}

.cta-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    color: #b0b0b0;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-action-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 800;
}


/* HIGH-END FOOTER */
.site-footer {
    background-color: #0b0b0b; /* Midnight black canvas */
    color: #ffffff;
    padding-top: 5rem;
    font-family: var(--font-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4.5rem;
    }
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #888;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 380px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-menu a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--color-secondary);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #888;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-icon {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-top: 1px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    color: #555;
    font-size: 0.85rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }
}

.footer-credits {
    color: #666;
}
