/*
    legal-style.css
    Stylesheet for legal documents of Manaspurti Studios
*/

/* --- 1. Root Variables & Global Styles --- */
:root {
    --deep-space-blue: #0A081A;
    --dark-slate: #1a182d;
    --luminous-cyan: #00ffff;
    --text-primary: #EAE8FF;
    --text-secondary: #A09DCC;
    --font-serif: 'Lora', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-speed: 300ms;
}

body {
    background-color: var(--deep-space-blue);
    color: var(--text-primary);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}


/* --- 2. Header --- */
.legal-header {
    padding: 20px 50px;
    background-color: var(--dark-slate);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo {
    height: 40px;
}


/* --- 3. Main Content Container --- */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

h1 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #fff;
}

h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 1px solid var(--dark-slate);
    padding-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.effective-date {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

ul {
    padding-left: 20px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: var(--luminous-cyan);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    text-decoration: underline;
}


/* --- 4. Footer --- */
.legal-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- 5. Responsive Design --- */
@media (max-width: 768px) {
    .legal-header {
        padding: 15px 20px;
        text-align: center;
    }
    
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}