/* static/css/legal/legal.css */

.legal-container {
    padding: 30px 0;
    background: #f5f7fa;
    min-height: calc(100vh - 200px);
}

.legal-layout {
    display: flex;
    gap: 30px;
}

/* 左側選單 */
.legal-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.legal-menu {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-bottom: 20px;
}

.legal-menu .menu-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.legal-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.15s;
}

.legal-menu .menu-item:last-child {
    border-bottom: none;
}

.legal-menu .menu-item i {
    width: 20px;
    color: #999;
}

.legal-menu .menu-item:hover {
    background: #f8f9fa;
    color: #667eea;
}

.legal-menu .menu-item:hover i {
    color: #667eea;
}

.legal-menu .menu-item.active {
    background: #667eea;
    color: white;
}

.legal-menu .menu-item.active i {
    color: white;
}

/* 語言提示 */
.language-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 16px;
}

.language-notice i {
    color: #856404;
}

.language-notice strong {
    display: block;
    margin-bottom: 8px;
    color: #856404;
}

.language-notice p {
    margin-bottom: 8px;
    color: #856404;
    font-size: 0.9rem;
}

/* 右側內容 */
.legal-content {
    flex: 1;
    min-width: 0;
    background: white;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.legal-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.legal-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.legal-meta {
    display: flex;
    gap: 10px;
}

.legal-meta .badge {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* 條款內容 */
.legal-body {
    color: #444;
    line-height: 1.8;
}

.version-notice {
    background: #e8f4fd;
    border-left: 4px solid #2196f3;
    padding: 16px 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.version-notice i {
    color: #2196f3;
    margin-right: 8px;
}

.version-notice strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.version-notice p {
    margin: 0;
    color: #555;
}

.legal-body h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.legal-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #444;
}

.legal-body p {
    margin-bottom: 16px;
}

.legal-body ul, .legal-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-body li {
    margin-bottom: 8px;
}

.legal-body .intro {
    font-size: 1rem;
    margin-bottom: 20px;
}

.legal-body hr {
    margin: 30px 0;
    border-top: 1px solid #e0e0e0;
}

/* 條款目錄卡片 */
.legal-index .lead {
    color: #666;
}

.legal-card {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: all 0.2s;
}

.legal-card:hover {
    background: #f0f2f5;
    transform: translateY(-2px);
}

.legal-card .card-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.legal-card .card-content {
    flex: 1;
}

.legal-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.legal-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.legal-contact {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.legal-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.legal-contact p {
    margin-bottom: 8px;
}

/* 響應式 */
@media (max-width: 992px) {
    .legal-layout {
        flex-direction: column;
    }
    
    .legal-sidebar {
        width: 100%;
    }
    
    .legal-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 1.5rem;
    }
    
    .legal-body h2 {
        font-size: 1.1rem;
    }
    
    .legal-card {
        flex-direction: column;
        gap: 12px;
    }
}