/* File: assets/css/legal-styles.css */
/*--------------------------------------------------------------
Page Header (Reused style)
--------------------------------------------------------------*/
.page-header {
background-color: var(--primary-color);
color: white;
padding: 4rem 0;
text-align: center;
margin-bottom: 3rem;
position: relative;
overflow: hidden;
}
.page-header:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('../images/paw-pattern-dark.png');
background-size: 200px;
background-repeat: repeat;
opacity: 0.1;
z-index: 0;
}
.page-header h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
position: relative;
z-index: 1;
}
.page-header p {
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto;
opacity: 0.9;
position: relative;
z-index: 1;
}
/*--------------------------------------------------------------
Legal Content Layout
--------------------------------------------------------------*/
.legal-content {
display: grid;
grid-template-columns: 300px 1fr;
gap: 3rem;
margin-bottom: 4rem;
}
/*--------------------------------------------------------------
Sidebar Styles
--------------------------------------------------------------*/
.legal-sidebar {
position: sticky;
top: 100px;
align-self: start;
}
.sidebar-widget {
background-color: var(--bg-color);
border-radius: 15px;
padding: 1.8rem;
margin-bottom: 2rem;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
}
.sidebar-widget h3 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 10px;
color: var(--text-dark);
}
.sidebar-widget h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background-color: var(--primary-color);
}
.sidebar-widget p {
color: var(--text-light);
margin-bottom: 1.5rem;
}
.sidebar-widget .btn {
width: 100%;
}
/* Table of Contents */
.toc-list {
list-style: none;
padding: 0;
margin: 0;
}
.toc-list li {
margin-bottom: 10px;
border-bottom: 1px solid var(--border-light);
padding-bottom: 10px;
}
.toc-list li:last-child {
margin-bottom: 0;
border-bottom: none;
padding-bottom: 0;
}
.toc-list a {
color: var(--text-color);
text-decoration: none;
display: flex;
justify-content: space-between;
align-items: center;
transition: color 0.3s ease;
}
.toc-list a:hover {
color: var(--primary-color);
}
/* Related Documents */
.related-docs {
list-style: none;
padding: 0;
margin: 0;
}
.related-docs li {
margin-bottom: 10px;
}
.related-docs a {
color: var(--primary-color);
text-decoration: none;
position: relative;
padding-left: 1.5rem;
display: block;
transition: transform 0.3s ease;
}
.related-docs a:before {
content: '\f15c';
font-family: 'Font Awesome 5 Free';
font-weight: 400;
position: absolute;
left: 0;
top: 0;
}
.related-docs a:hover {
transform: translateX(5px);
}
/*--------------------------------------------------------------
Main Content Styles
--------------------------------------------------------------*/
.legal-main {
background-color: var(--bg-color);
border-radius: 15px;
padding: 2.5rem;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
}
.legal-section {
margin-bottom: 3rem;
padding-bottom: 3rem;
border-bottom: 1px solid var(--border-light);
scroll-margin-top: 100px;
}
.legal-section:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.legal-section h2 {
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: var(--text-dark);
position: relative;
}
.legal-section h3 {
font-size: 1.4rem;
font-weight: 600;
margin: 2rem 0 1rem;
color: var(--text-dark);
}
.legal-section p {
color: var(--text-color);
margin-bottom: 1.5rem;
line-height: 1.6;
}
.legal-section ul,
.legal-section ol {
padding-left: 1.5rem;
margin-bottom: 1.5rem;
}
.legal-section li {
margin-bottom: 0.5rem;
color: var(--text-color);
}
.legal-section a {
color: var(--primary-color);
text-decoration: none;
}
.legal-section a:hover {
text-decoration: underline;
}
.contact-list {
list-style: none;
padding-left: 0;
}
.contact-list li {
padding-left: 1.5rem;
position: relative;
margin-bottom: 1rem;
}
.contact-list li strong {
color: var(--text-dark);
}
/*--------------------------------------------------------------
Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1200px) {
.legal-content {
grid-template-columns: 250px 1fr;
gap: 2rem;
}
}
@media (max-width: 992px) {
.legal-content {
grid-template-columns: 1fr;
}
.legal-sidebar {
    position: static;
    margin-bottom: 2rem;
}
}
@media (max-width: 768px) {
.page-header {
padding: 3rem 0;
}
.page-header h1 {
    font-size: 2rem;
}

.legal-main {
    padding: 1.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
}

.legal-section h3 {
    font-size: 1.2rem;
}
}
@media (max-width: 576px) {
.sidebar-widget {
padding: 1.5rem;
}
}
/* Dark Mode Styles */
[data-theme="dark"] .sidebar-widget,
[data-theme="dark"] .legal-main {
border-color: rgba(255, 255, 255, 0.05);
}
[data-theme="dark"] .legal-section {
border-color: rgba(255, 255, 255, 0.05);
}