/* Nurse Wellness Playbook - Website Styles */

:root {
    --navy-blue: #1a365d;
    --scrubs-teal: #2d9a8c;
    --scrubs-teal-light: #3eb8a8;
    --warm-gray: #f8f7f5;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --white: #ffffff;
    --sunset-coral: #ed8936;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--warm-gray);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--scrubs-teal), var(--scrubs-teal-light));
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.5rem;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.tagline {
    margin-top: 8px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.back-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero h2 {
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 25px;
}

.download-btn {
    display: inline-block;
    background: var(--navy-blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.feature h3 {
    color: var(--navy-blue);
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Links Section */
.links {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.links h2 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.links ul {
    list-style: none;
}

.links li {
    padding: 10px 0;
    border-bottom: 1px solid var(--warm-gray);
}

.links li:last-child {
    border-bottom: none;
}

.links a {
    color: var(--scrubs-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.links a:hover {
    color: var(--navy-blue);
}

/* Legal Content */
.legal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin: 30px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    color: var(--navy-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-content section {
    margin-bottom: 30px;
}

.legal-content h2 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
    padding-top: 10px;
}

.legal-content p {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content ul, .legal-content ol {
    margin: 12px 0 12px 25px;
    color: var(--text-primary);
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--scrubs-teal);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--warm-gray);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Contact */
.contact-email {
    font-size: 1.2rem;
    margin: 20px 0;
}

.contact-email a {
    color: var(--scrubs-teal);
    font-weight: 600;
}

/* Crisis Resources */
.crisis-resources {
    background: #fef3f2;
    padding: 20px 20px 20px 40px;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
    margin: 15px 0;
}

.crisis-resources li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

footer a {
    color: var(--scrubs-teal-light);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 30px 20px;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .legal-content {
        padding: 25px 20px;
    }

    .legal-content h1 {
        font-size: 1.6rem;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }
}
