/* Clarity Mirror Web - AI-Optimized Styles */
:root {
    --primary-color: #2563eb;
    --text-color: #1f2937;
    --background-color: #ffffff;
    --border-color: #e5e7eb;
    --secondary-bg: #f9fafb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

blockquote {
    font-style: italic;
    color: #666;
    padding: 1em;
    margin: 1em 0 2em 0;
    background-color: #f9f9f9;
    border-left: 4px solid #ddd;
}

header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    color: #6b7280;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.location {
    color: #6b7280;
    font-size: 0.95rem;
}

.list-enhanced {
    list-style: none;
    padding-left: 0;
}

.list-enhanced li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

.list-enhanced li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 40px 0 20px;
    border-top: 2px solid var(--border-color);
    margin-top: 60px;
    color: #6b7280;
    font-size: 0.9rem;
}

.mirror-notice {
    margin-top: 10px;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    body {
        max-width: 100%;
    }
    
    section {
        page-break-inside: avoid;
    }
}