/* legal.css - Legal pages styles (DMCA, Privacy, Terms) */

/* ========================================
   Legal Page Container
   ======================================== */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    font-size: 1rem;
    color: #64748b;
}

/* ========================================
   Legal Content Sections
   ======================================== */
.legal-content {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #334155;
    margin: 1rem 0 0.5rem;
}

.legal-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #1e293b;
}

/* ========================================
   Contact Info Box
   ======================================== */
.contact-info {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    border-left: 4px solid #3b82f6;
}

.contact-info p {
    margin-bottom: 0.25rem;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ========================================
   Note Box
   ======================================== */
.note {
    background: #fef3c7;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #92400e;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* ========================================
   Legal Footer
   ======================================== */
.legal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #64748b;
}

.legal-footer p {
    margin-bottom: 0.25rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .legal-container {
        padding: 1rem;
    }
    
    .legal-header {
        margin-bottom: 1.5rem;
    }
    
    .legal-title {
        font-size: 1.75rem;
    }
    
    .legal-content {
        padding: 1.25rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1rem;
    }
    
    .legal-title {
        font-size: 1.5rem;
    }
    
    .contact-info {
        padding: 0.75rem 1rem;
    }
}

/* ========================================
   Animation Effects
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-container {
    animation: fadeIn 0.4s ease-out;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .legal-container {
        animation: none;
    }
}

/* ========================================
   Accessibility Focus Styles
   ======================================== */
.legal-section a:focus,
.contact-info a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.25rem;
}