.footer {
    background-color: #050505;
    padding: 5rem 0 2rem;
    border-top: 1px solid #111;
    font-size: 0.95rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bio {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 250px;
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.socialIcon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.8rem;
    transition: all 0.2s;
    text-decoration: none;
}

.socialIcon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #222;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.colTitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.link {
    display: block;
    color: #888;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.link:hover {
    color: white;
}

.newsletter {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .newsletter {
        grid-column: span 1;
    }
}

.text {
    color: #888;
    margin-bottom: 1rem;
}

.inputGroup {
    display: flex;
    gap: 0.5rem;
}

.input {
    background: #111;
    border: 1px solid #333;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: white;
    flex: 1;
}

.btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.bottom {
    border-top: 1px solid #111;
    padding-top: 2rem;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}