/**
 * Legal Pages Stylesheet — B-Link S.r.l.
 * ========================================
 * Styles for privacy-policy.html and cookie-policy.html
 */

/* ---- Layout ---- */

.legal-main {
    padding-top: calc(72px + 3rem); /* navbar height + spacing */
    padding-bottom: 4rem;
    min-height: 100vh;
    background: #fff;
}

/* ---- Header ---- */

.legal-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.legal-header .section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bl-accent, #2563eb);
    margin-bottom: .75rem;
}

.legal-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--bl-navy, #0f1c2e);
    margin-bottom: .75rem;
    line-height: 1.2;
}

.legal-meta {
    font-size: .9rem;
    color: var(--bl-text-muted, #6b7280);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- Body ---- */

.legal-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--bl-text, #374151);
}

.legal-body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bl-navy, #0f1c2e);
    margin-top: 2.5rem;
    margin-bottom: .75rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--bl-accent, #2563eb);
    display: inline-block;
}

.legal-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bl-navy, #0f1c2e);
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

.legal-body p {
    margin-bottom: 1rem;
}

.legal-body ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.legal-body ul li {
    margin-bottom: .4rem;
}

.legal-body a {
    color: var(--bl-accent, #2563eb);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-body a:hover {
    color: var(--bl-navy, #0f1c2e);
}

/* ---- Address block ---- */

.legal-address {
    background: #f8f9fa;
    border-left: 3px solid var(--bl-accent, #2563eb);
    padding: 1rem 1.25rem;
    border-radius: 0 .375rem .375rem 0;
    font-style: normal;
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* ---- Tables ---- */

.legal-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
    border-radius: .375rem;
    border: 1px solid #dee2e6;
}

.legal-table {
    font-size: .875rem;
    margin-bottom: 0 !important;
}

.legal-table thead th {
    background: var(--bl-navy, #0f1c2e);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    border-color: rgba(255, 255, 255, .15) !important;
}

.legal-table tbody td {
    vertical-align: top;
    border-color: #dee2e6;
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

/* ---- Footer navigation ---- */

.legal-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-end;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

/* ---- Responsive ---- */

@media (max-width: 575.98px) {
    .legal-main {
        padding-top: calc(64px + 2rem);
        padding-bottom: 3rem;
    }

    .legal-footer-nav {
        flex-direction: column-reverse;
    }

    .legal-footer-nav .btn {
        width: 100%;
        text-align: center;
    }
}
