/* ============================================
   LLT Privacy Policy - Stylesheet
   Theme: Green (matching app theme)
   ============================================ */

/* CSS Variables for Theme Colors */
:root {
    --primary-green: #4CAF50;
    --primary-green-dark: #388E3C;
    --primary-green-light: #81C784;
    --primary-green-lighter: #C8E6C9;
    --primary-green-lightest: #E8F5E9;
    --text-dark: #1B5E20;
    --text-medium: #2E7D32;
    --text-light: #4CAF50;
    --background-white: #FFFFFF;
    --background-light: #F5F5F5;
    --background-green-tint: #F1F8F4;
    --border-color: #A5D6A7;
    --shadow-light: rgba(76, 175, 80, 0.1);
    --shadow-medium: rgba(76, 175, 80, 0.2);
    --link-color: #2E7D32;
    --link-hover: #1B5E20;
    --divider-color: #C8E6C9;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 6px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    text-align: center;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 1px;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    background-color: var(--background-light);
    min-height: calc(100vh - 200px);
}

.privacy-policy {
    background-color: var(--background-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px var(--shadow-light);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

/* Policy Header */
.policy-header {
    background: linear-gradient(135deg, var(--primary-green-lightest) 0%, var(--background-white) 100%);
    padding: 3rem 2.5rem;
    border-bottom: 3px solid var(--primary-green-lighter);
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.last-updated span {
    color: var(--primary-green-dark);
    font-weight: 600;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-top: 1rem;
}

/* Policy Content */
.policy-content {
    padding: 2.5rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--divider-color);
}

.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--primary-green-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green-lighter);
}

.policy-section h3 {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-position: outside;
}

.policy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.policy-section li strong {
    color: var(--primary-green-dark);
    font-weight: 600;
}

/* Links */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Contact Information */
.contact-info {
    background-color: var(--primary-green-lightest);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-green);
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: var(--primary-green-dark);
    display: inline-block;
    min-width: 120px;
    margin-right: 0.5rem;
}

.contact-item a {
    color: var(--link-color);
    font-weight: 500;
}

.contact-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-medium);
    padding: 1rem;
    background-color: var(--background-green-tint);
    border-radius: 8px;
}

/* Policy Footer */
.policy-footer {
    background-color: var(--primary-green-lightest);
    padding: 2rem 2.5rem;
    border-top: 3px solid var(--primary-green-lighter);
    text-align: center;
}

.policy-footer p {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.footer-note {
    font-style: italic;
    color: var(--text-medium);
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--primary-green-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.footer-content a:hover {
    color: var(--primary-green-lighter);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .main-content {
        padding: 1.5rem 0;
    }

    .policy-header {
        padding: 2rem 1.5rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .contact-item {
        font-size: 0.95rem;
    }

    .contact-item strong {
        display: block;
        margin-bottom: 0.3rem;
        min-width: auto;
    }

    .policy-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .policy-header {
        padding: 1.5rem 1rem;
    }

    .policy-header h1 {
        font-size: 1.75rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .policy-section ul {
        margin-left: 1.2rem;
    }

    .contact-info {
        padding: 1rem;
    }

    body {
        font-size: 15px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer {
        background: white !important;
        color: black !important;
    }

    .policy-section {
        page-break-inside: avoid;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    .contact-info {
        border: 1px solid #ccc;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #2E7D32;
        --text-dark: #000000;
        --border-color: #000000;
    }

    .policy-section {
        border-bottom: 2px solid var(--border-color);
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment if you want dark mode support */
    /*
    :root {
        --background-white: #1a1a1a;
        --background-light: #121212;
        --text-dark: #e0e0e0;
        --text-medium: #b0b0b0;
    }
    */
}

