/* 
SERIOUSLY DIGITAL - FOOTER
Space Grotesk | No CSS Variables | Mobile Stacked
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* FOOTER */
.seriously-footer {
    background: linear-gradient(180deg, #2a2d30 0%, #232629 100%);
    color: #ffffff;
}

/* MAIN CONTENT */
.seriously-footer-main {
    padding: 60px 0 50px;
}

.seriously-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.seriously-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 48px;
}

/* BRAND COLUMN */
.seriously-footer-brand {
    padding-right: 20px;
}

.seriously-footer-logo {
    margin-bottom: 16px;
}

.seriously-footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.seriously-footer-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.seriously-footer-social {
    display: flex;
    gap: 10px;
}

.seriously-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.seriously-footer-social a:hover {
    background: #4facb3;
    color: #ffffff;
}

/* LINK COLUMNS */
.seriously-footer-column {
    display: flex;
    flex-direction: column;
}

.seriously-footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    position: relative;
}

.seriously-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 1px;
}

.seriously-footer-column:nth-child(2) .seriously-footer-heading::after {
    background: #4facb3;
}

.seriously-footer-column:nth-child(3) .seriously-footer-heading::after {
    background: #de4854;
}

.seriously-footer-column:nth-child(4) .seriously-footer-heading::after {
    background: #4facb3;
}

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

.seriously-footer-links li {
    margin-bottom: 10px;
}

.seriously-footer-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.seriously-footer-links a:hover {
    color: #6bbcc2;
}

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

.seriously-footer-areas li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
    padding-left: 16px;
    position: relative;
}

.seriously-footer-areas li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #de4854;
    opacity: 0.8;
}

/* BOTTOM BAR */
.seriously-footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seriously-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seriously-footer-copyright {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.seriously-footer-legal {
    display: flex;
    gap: 20px;
}

.seriously-footer-legal a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.seriously-footer-legal a:hover {
    color: #6bbcc2;
}

/* TABLET */
@media (max-width: 991px) {
    .seriously-footer-main {
        padding: 50px 0 40px;
    }
    
    .seriously-footer-container {
        padding: 0 32px;
    }
    
    .seriously-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }
    
    .seriously-footer-brand {
        padding-right: 0;
    }
    
    .seriously-footer-logo-text {
        font-size: 1.35rem;
    }
    
    .seriously-footer-tagline {
        font-size: 0.9rem;
    }
    
    .seriously-footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .seriously-footer-bottom-inner {
        padding: 0 32px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .seriously-footer-main {
        padding: 40px 0 32px;
    }
    
    .seriously-footer-container {
        padding: 0 24px;
    }
    
    .seriously-footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .seriously-footer-brand {
        text-align: center;
        padding-bottom: 28px;
        margin-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .seriously-footer-logo-text {
        font-size: 1.4rem;
    }
    
    .seriously-footer-tagline {
        font-size: 0.9rem;
        max-width: 320px;
        margin: 0 auto 20px;
    }
    
    .seriously-footer-social {
        justify-content: center;
    }
    
    .seriously-footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .seriously-footer-column {
        text-align: center;
        padding: 24px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .seriously-footer-column:last-child {
        border-bottom: none;
    }
    
    .seriously-footer-heading {
        margin-bottom: 16px;
        padding-bottom: 0;
    }
    
    .seriously-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -8px;
    }
    
    .seriously-footer-links li,
    .seriously-footer-areas li {
        margin-bottom: 12px;
    }
    
    .seriously-footer-links a,
    .seriously-footer-areas li {
        font-size: 0.95rem;
    }
    
    .seriously-footer-areas li {
        padding-left: 0;
    }
    
    .seriously-footer-areas li::before {
        display: none;
    }
    
    .seriously-footer-bottom {
        padding: 20px 0;
    }
    
    .seriously-footer-bottom-inner {
        padding: 0 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .seriously-footer-legal {
        gap: 16px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .seriously-footer-main {
        padding: 32px 0 24px;
    }
    
    .seriously-footer-container {
        padding: 0 20px;
    }
    
    .seriously-footer-brand {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
    
    .seriously-footer-logo-text {
        font-size: 1.3rem;
    }
    
    .seriously-footer-tagline {
        font-size: 0.85rem;
    }
    
    .seriously-footer-column {
        padding: 20px 0;
    }
    
    .seriously-footer-heading {
        font-size: 0.95rem;
    }
    
    .seriously-footer-links a,
    .seriously-footer-areas li {
        font-size: 0.9rem;
    }
    
    .seriously-footer-bottom-inner {
        padding: 0 20px;
    }
    
    .seriously-footer-copyright,
    .seriously-footer-legal a {
        font-size: 0.75rem;
    }
}
