/*
Theme Name: Woostify Child
Template: woostify
Version: 1.0.0
Author: Robin
Description: Child theme for Woostify
*/

@import url("../woostify/style.css");
/* Optional, for older themes */

.shadow-section {
    box-shadow: 0 6px 20px -1px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
    background-color: #0c0c0c;
    color: #cbd5e1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #38bdf8;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 2rem;
    margin: auto;
    width: 1240px;
}

/* Left: Logo, Name, Tagline */
.footer-brand-container {
    display: flex;
    flex-direction: column;
}

.logo-and-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 70px;
    flex-shrink: 0;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: bold;
    color: #f1f5f9;
    margin: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-top: 0.5rem;
    padding-left: 0;
    /* starts aligned with logo */
}

/* Right Columns */
.footer-column-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column {
    min-width: 320px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    font-size: 0.85rem;
    margin: auto;
    width: 1240px;
    margin-top: 2rem;
}

.footer-bottom-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-links-inline {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-disclaimer {
    margin-top: 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Responsive */
@media (min-width: 768px) {
    .footer {
        padding: 4rem;
    }

    .footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-column-group {
        flex-direction: row;
        gap: 4rem;
    }

    .footer-tagline {
        padding-left: 0;
    }
}