/* 
 * PrimeDrama Legal Pages Styles
 * Author: Cascade
 * Version: 1.0
 */

/* Legal Content Styles */
.legal-content {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.legal-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 10px;
}

.legal-section h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul, 
.legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section strong {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Logo link style */
.logo h1 a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .legal-title {
        font-size: 1.8rem;
    }
    
    .legal-section {
        padding: 15px;
    }
}
