/* Halloween Theme Styling for Legal Documents */

:root {
    --pumpkin-orange: #FF7518;
    --midnight-black: #1B1B1B;
    --ghost-white: #F8F8FF;
    --blood-red: #8A0303;
    --witch-purple: #5E239D;
    --fog-gray: #444444;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, var(--midnight-black), var(--fog-gray));
    color: var(--ghost-white);
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(68, 68, 68, 0.8);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 117, 24, 0.3);
}

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

.logo {
    font-size: 60px;
    margin-bottom: 10px;
}

h1 {
    color: var(--pumpkin-orange);
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

h2 {
    color: var(--pumpkin-orange);
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

h3 {
    color: var(--ghost-white);
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: rgba(248, 248, 255, 0.9);
}

.meta-info {
    background: rgba(27, 27, 27, 0.5);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid var(--pumpkin-orange);
}

.meta-info p {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.meta-info strong {
    color: var(--pumpkin-orange);
}

a {
    color: var(--pumpkin-orange);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--witch-purple);
    text-decoration: underline;
}

ul, ol {
    margin: 15px 0 15px 30px;
}

li {
    margin-bottom: 10px;
    color: rgba(248, 248, 255, 0.85);
}

.highlight {
    background: rgba(255, 117, 24, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--pumpkin-orange);
    font-weight: 600;
}

.section {
    margin-bottom: 30px;
}

.back-link {
    display: inline-block;
    background: var(--pumpkin-orange);
    color: var(--midnight-black);
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.back-link:hover {
    background: var(--witch-purple);
    color: var(--ghost-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 117, 24, 0.4);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 117, 24, 0.3);
    font-size: 0.9em;
    color: rgba(248, 248, 255, 0.6);
}

/* Landing Page Specific */
.landing-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.doc-link {
    display: block;
    background: rgba(94, 35, 157, 0.3);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--witch-purple);
    transition: all 0.3s;
    text-align: center;
}

.doc-link:hover {
    background: rgba(94, 35, 157, 0.5);
    border-color: var(--pumpkin-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 117, 24, 0.3);
    text-decoration: none;
}

.doc-link h2 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.doc-link p {
    margin: 0;
    color: rgba(248, 248, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .logo {
        font-size: 48px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .back-link {
        display: none;
    }
    
    a {
        color: #0066cc;
    }
}

