﻿/* =================================================================
   LEGAL PAGES SHARED STYLES
   Styles common to Terms, Privacy, Community Guidelines, Data Deletion
   Requires: /css/unreality3d-styles.css loaded first
   ================================================================= */

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Navigation */
.legal-nav {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.legal-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.legal-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-nav-link:hover {
    color: var(--primary-blue);
}

/* Main content card */
.legal-content {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.effective-date {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 0.75rem;
}

/* Typography within legal content */
.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-top: 3px solid var(--primary-blue);
    padding-top: 1.5rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Callout boxes */
.legal-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.legal-highlight h3 {
    color: white;
    margin-top: 0;
}

.legal-highlight p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.legal-warning {
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.legal-warning h3 {
    color: white;
    margin-top: 0;
}

.legal-warning p {
    color: white;
    margin-bottom: 0;
}

.legal-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.legal-notice h3 {
    color: #b8860b;
    margin-top: 0;
}

.legal-notice p {
    color: #856404;
    margin-bottom: 0;
}

/* Contact block */
.legal-contact {
    background: linear-gradient(135deg, var(--light-bg), #e2e8f0);
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.legal-contact h3 {
    color: var(--primary-blue);
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }

    .legal-nav-links {
        display: none;
    }
}