/* Legal Pages Styling */

:root {
    --brenton-navy: #0A1628;
    --brenton-gold: #C9A55A;
    --brenton-cream: #F5F3EF;
    --brenton-gray: #6B7280;
    --brenton-light: #F9FAFB;
}

/* Legal Page Layout */
.legal-page {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F3EF 100%);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--brenton-gold);
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--brenton-navy);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.last-updated {
    font-size: 14px;
    color: var(--brenton-gray);
    font-weight: 400;
    font-style: italic;
}

/* Content */
.legal-content {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
}

/* Sections */
.legal-section {
    margin-bottom: 50px;
}

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

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--brenton-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.legal-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--brenton-navy);
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--brenton-navy);
    margin-bottom: 12px;
}

/* Paragraphs */
.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section p strong {
    font-weight: 600;
    color: var(--brenton-navy);
}

/* Lists */
.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.legal-section ul li:before {
    content: "•";
    color: var(--brenton-gold);
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    left: 8px;
    top: -2px;
}

.legal-section ul li strong {
    font-weight: 600;
    color: var(--brenton-navy);
}

/* Entity Cards */
.entity-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #F5F3EF 100%);
    border-left: 4px solid var(--brenton-gold);
    padding: 30px;
    margin: 30px 0;
    border-radius: 6px;
}

.entity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--brenton-navy);
    margin-top: 0;
    margin-bottom: 20px;
}

.entity-card ul {
    margin: 0;
}

.entity-card ul li {
    margin-bottom: 10px;
}

.entity-card ul li:last-child {
    margin-bottom: 0;
}

/* Contact Entity Sections */
.contact-entity {
    background: #F9FAFB;
    padding: 24px;
    margin: 20px 0;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.contact-entity h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--brenton-navy);
    margin-top: 0;
    margin-bottom: 12px;
}

.contact-entity p {
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0;
}

.contact-entity strong {
    font-weight: 600;
    color: var(--brenton-navy);
    display: block;
    margin-bottom: 8px;
}

/* Links */
.legal-content a {
    color: var(--brenton-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-content a:hover {
    color: var(--brenton-navy);
    border-bottom-color: var(--brenton-gold);
}

/* Special Notices */
.legal-section p:has(strong:first-child) {
    background: #FFF7ED;
    border-left: 3px solid #F59E0B;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Table of Contents (if needed) */
.legal-toc {
    background: #F9FAFB;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.legal-toc h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--brenton-navy);
    margin-top: 0;
    margin-bottom: 16px;
}

.legal-toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.legal-toc ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.legal-toc ul li:before {
    display: none;
}

.legal-toc a {
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-toc a:hover {
    color: var(--brenton-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .legal-container {
        padding: 0 24px;
    }

    .legal-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .legal-header h1 {
        font-size: 32px;
    }

    .last-updated {
        font-size: 13px;
    }

    .legal-content {
        padding: 30px 24px;
    }

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

    .legal-section h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .legal-section h3 {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 14px;
        line-height: 1.7;
    }

    .entity-card {
        padding: 20px;
        margin: 20px 0;
    }

    .entity-card h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .contact-entity {
        padding: 20px;
        margin: 16px 0;
    }

    .contact-entity h4 {
        font-size: 16px;
    }

    .contact-entity p {
        font-size: 13px;
    }

    .legal-section ul li {
        padding-left: 24px;
    }

    .legal-section ul li:before {
        left: 6px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 28px;
    }

    .legal-content {
        padding: 24px 20px;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-section h3 {
        font-size: 16px;
    }

    .entity-card {
        padding: 16px;
    }

    .entity-card h3 {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .glass-nav,
    .main-footer {
        display: none;
    }

    .legal-page {
        padding-top: 0;
        background: white;
    }

    .legal-content {
        box-shadow: none;
        padding: 0;
    }

    .legal-section {
        page-break-inside: avoid;
    }

    .legal-section h2 {
        page-break-after: avoid;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }
}

/* Accessibility */
.legal-content *:focus {
    outline: 2px solid var(--brenton-gold);
    outline-offset: 2px;
}

/* Selection Styling */
.legal-content ::selection {
    background-color: var(--brenton-gold);
    color: white;
}

.legal-content ::-moz-selection {
    background-color: var(--brenton-gold);
    color: white;
}
