/* ==================== FOOTER — ttswtrs.com style ==================== */
/* Light background, columns left, subscribe right, minimal */

footer {
    background: #f8f8f8;
    color: #1a1a1a;
    padding: 60px 40px 30px;
    margin-top: 0;
    border-top: 1px solid #e5e5e5;
}

/* Main footer area — columns + subscribe */
.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

/* Left side — 3 columns of links (pushed to left edge like ttswtrs) */
.footer-columns {
    display: flex;
    gap: 80px; /* Gap between columns - like ttswtrs reference */
    flex-shrink: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Vertical spacing between links */
    min-width: 120px;
}

.footer-col a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

/* Right side — subscribe form */
.footer-subscribe {
    max-width: 340px;
    text-align: right;
}

.subscribe-title {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.subscribe-form {
    display: flex;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 12px;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #999;
    font-size: 13px;
    background: transparent;
    outline: none;
    letter-spacing: 0.02em;
}

.subscribe-form input[type="email"]::placeholder {
    color: #bbb;
}

.subscribe-form input[type="email"]:focus {
    border-bottom-color: #1a1a1a;
}

.subscribe-form button {
    padding: 8px 0 8px 16px;
    background: transparent;
    color: #1a1a1a;
    border: none;
    border-bottom: 1px solid #999;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
}

.subscribe-form button:hover {
    color: #666;
}

.subscribe-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: #666;
    cursor: pointer;
    justify-content: flex-end;
}

.subscribe-checkbox input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
}

.subscribe-checkbox span {
    text-align: left;
}

/* Bottom bar — copyright + links */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    margin-top: 10px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #999;
    font-size: 11px;
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 32px; /* More spacing between links */
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #1a1a1a;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-subscribe {
        max-width: 100%;
        text-align: left;
    }

    .subscribe-checkbox {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 40px 20px 24px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 24px;
    }

    .footer-col {
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input[type="email"] {
        border-bottom: 1px solid #999;
    }

    .subscribe-form button {
        width: 100%;
        padding: 10px 0;
        border-bottom: none;
        text-align: left;
    }
}
