/* LEGAL PAGES BRUTAL STYLES */

/* LEGAL HERO */
.brutal-legal-hero {
    background: var(--brutal-dark);
    color: var(--brutal-white);
    padding: 80px 0;
}

.legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-header .brutal-heading {
    color: var(--brutal-white);
    margin-bottom: 30px;
    font-size: clamp(60px, 8vw, 100px);
}

.legal-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brutal-gray);
    margin-bottom: 20px;
}

.legal-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--brutal-red);
    border: 3px solid var(--brutal-red);
    padding: 10px 20px;
    display: inline-block;
}

/* LEGAL CONTENT */
.brutal-legal-content {
    padding: 100px 0;
    background: var(--brutal-white);
}

.legal-sections {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 3px solid var(--brutal-light);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--brutal-red);
    border-left: 5px solid var(--brutal-red);
    padding-left: 20px;
}

.subsection-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    margin: 30px 0 20px 0;
    color: var(--brutal-black);
}

.section-content {
    padding-left: 25px;
}

.legal-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--brutal-black);
    text-align: justify;
}

.legal-text strong {
    font-weight: 900;
    color: var(--brutal-black);
}

.legal-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.legal-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--brutal-black);
}

.legal-list li:before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brutal-red);
    font-size: 12px;
}

.legal-list li strong {
    font-weight: 900;
    text-transform: uppercase;
}

.legal-link {
    color: var(--brutal-red);
    text-decoration: underline;
    font-weight: 700;
}

.legal-link:hover {
    color: var(--brutal-black);
    background: var(--brutal-red);
    padding: 2px 4px;
    text-decoration: none;
}

/* COOKIE TABLE */
.cookie-table {
    border: var(--brutal-border);
    background: var(--brutal-light);
    margin: 30px 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    border-bottom: 3px solid var(--brutal-white);
    padding: 20px;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-name {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--brutal-red);
}

.cookie-purpose {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--brutal-black);
    padding: 0 20px;
}

.cookie-duration {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--brutal-gray);
    text-align: right;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .legal-header .brutal-heading {
        font-size: 80px;
    }

    .brutal-legal-content {
        padding: 80px 0;
    }

    .legal-sections {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .legal-header .brutal-heading {
        font-size: 60px;
    }

    .legal-subtitle {
        font-size: 14px;
    }

    .legal-date {
        font-size: 12px;
        padding: 8px 16px;
    }

    .brutal-legal-content {
        padding: 60px 0;
    }

    .legal-sections {
        padding: 0 20px;
    }

    .legal-section {
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    .section-title {
        font-size: 24px;
        padding-left: 15px;
    }

    .section-content {
        padding-left: 20px;
    }

    .legal-text {
        font-size: 15px;
        text-align: left;
    }

    .legal-list li {
        font-size: 15px;
        padding-left: 20px;
    }

    .cookie-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    .cookie-purpose {
        padding: 0;
    }

    .cookie-duration {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .legal-header .brutal-heading {
        font-size: 48px;
    }

    .section-title {
        font-size: 20px;
        border-left-width: 3px;
        padding-left: 12px;
    }

    .legal-text {
        font-size: 14px;
    }

    .legal-list li {
        font-size: 14px;
    }
}