/* ==========================================================
   JT MAISON — Footer Widget
   ========================================================== */

.jtm-footer {
    position: relative;
    width: 100%;
    padding: 100px 40px 40px 40px;
    background: #1a1a1a;
    box-sizing: border-box;
    overflow: hidden;
}

.jtm-footer__watermark {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--jtm-font-ui);
    font-size: 64px;
    font-weight: 600;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

.jtm-footer__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Section */
.jtm-footer__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

/* Left Side */
.jtm-footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.jtm-footer__logo {
    height: 60px;
    margin-bottom: 40px;
    width: auto;
}

.jtm-footer__tagline {
    font-family: var(--jtm-font-ui);
    font-size: 32px;
    font-weight: bold;
    color: var(--jtm-white);
    margin: 0 0 24px 0;
}

.jtm-footer__socials {
    font-family: var(--jtm-font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--jtm-white);
    text-transform: uppercase;
}

.jtm-footer__socials a {
    color: var(--jtm-white);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: border-color 0.3s;
}

.jtm-footer__socials a:hover {
    border-color: var(--jtm-white);
}

/* Right Side - Navigation */
.jtm-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.jtm-footer__nav a {
    font-family: var(--jtm-font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--jtm-white);
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s;
}

.jtm-footer__nav a:hover {
    opacity: 0.7;
}

/* Bottom Bar */
.jtm-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--jtm-white);
}

.jtm-footer__copy { 
    text-align: left; 
}

.jtm-footer__privacy { 
    text-align: center; 
}

.jtm-footer__terms { 
    text-align: right; 
}

.jtm-footer__copy, 
.jtm-footer__privacy a, 
.jtm-footer__terms a {
    font-family: var(--jtm-font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.jtm-footer__privacy a:hover, 
.jtm-footer__terms a:hover {
    color: var(--jtm-white);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .jtm-footer {
        padding: 80px 24px 40px 24px;
    }
    
    .jtm-footer__watermark {
        font-size: 32px;
        top: 20px;
    }
    
    .jtm-footer__main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .jtm-footer__left {
        align-items: center;
        margin-bottom: 60px;
    }
    
    .jtm-footer__logo {
        height: 50px;
        margin-bottom: 30px;
    }
    
    .jtm-footer__tagline {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .jtm-footer__socials {
        line-height: 2; /* more spacing between lines if they wrap */
    }
    
    .jtm-footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .jtm-footer__bottom {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .jtm-footer__copy,
    .jtm-footer__privacy,
    .jtm-footer__terms {
        text-align: center;
    }
}
