/* Legal Pages Styles - Privacy Policy & Terms of Service */

/* Main legal page container */
.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

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

/* Legal header */
.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.effective-date {
    font-size: 1rem;
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Legal content */
.legal-content {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f3f4f6;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #6366f1;
    display: inline-block;
}

.legal-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-top: 28px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.legal-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4b5563;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
}

.legal-section ul li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Links within legal content */
.legal-section a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: #5856eb;
    text-decoration: underline;
}

/* Contact info block */
.contact-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    border-left: 4px solid #6366f1;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Emphasis for legal uppercase sections */
.legal-section p:has(strong:first-child) {
    background: #fef3c7;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

/* Make navbar brand clickable */
.nav-brand {
    text-decoration: none;
}

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

    .legal-header h1 {
        font-size: 2.25rem;
    }

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

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section h3 {
        font-size: 1rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.9375rem;
    }
}

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

    .legal-content {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .legal-section {
        margin-bottom: 32px;
        padding-bottom: 28px;
    }

    .contact-info {
        padding: 16px;
    }
}

/* Print styles for legal documents */
@media print {
    .navbar,
    .footer {
        display: none;
    }

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

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

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

    .legal-header h1 {
        -webkit-text-fill-color: #1a1a1a;
        background: none;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.legal-section a:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Table of contents styles (optional enhancement) */
.toc {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.toc h2 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.toc ul li {
    margin-bottom: 8px;
}

.toc ul li a {
    color: #6366f1;
    text-decoration: none;
    font-size: 0.9375rem;
}

.toc ul li a:hover {
    text-decoration: underline;
}
