/* Auxiliary Pages CSS - QuietCycle Sleep */

/* Root Variables */
:root {
    --primary-color: #4F6B7A;
    --secondary-color: #8BB8A8;
    --accent-color: #F5F2E8;
    --text-dark: #2D3748;
    --text-light: #718096;
    --background-light: #FAFAFA;
    --white: #FFFFFF;
    --gradient-bg: linear-gradient(135deg, #F5F2E8 0%, #E2E8F0 50%, #CBD5E0 100%);
    --shadow-light: 0 2px 8px rgba(79, 107, 122, 0.1);
    --shadow-medium: 0 4px 16px rgba(79, 107, 122, 0.15);
    --border-radius: 12px;
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.main-content {
    flex: 1;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

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

a:hover {
    color: var(--primary-color);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.brand-name:hover {
    color: var(--secondary-color);
}

/* Page Hero */
.page-hero {
    background: var(--gradient-bg);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: var(--spacing-xl) 0;
}

.content-section.alt-bg {
    background: var(--white);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

/* About Page Specific */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.approach-item {
    background: var(--accent-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
}

.approach-item h3 {
    margin-bottom: var(--spacing-sm);
}

.values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.value {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.value h3 {
    margin-bottom: var(--spacing-sm);
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
}

.policy-content em {
    color: var(--secondary-color);
    font-style: italic;
    background: var(--accent-color);
    padding: var(--spacing-sm);
    border-radius: 8px;
    display: block;
    text-align: center;
    margin: var(--spacing-md) 0;
}

.policy-content h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

/* About Page Specific Styles */
.mission-content,
.founders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.founders-content {
    grid-template-columns: 1fr 1fr;
}

.mission-img,
.founders-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.mission-text h2,
.founders-text h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.mission-text p,
.founders-text p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

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

.approach-illustration {
    margin-bottom: var(--spacing-xl);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.approach-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.approach-icon {
    margin-bottom: var(--spacing-sm);
}

.approach-item h3 {
    margin-bottom: var(--spacing-sm);
}

.values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.value {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.value-icon {
    margin-bottom: var(--spacing-sm);
}

.value h3 {
    margin-bottom: var(--spacing-sm);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand .brand-name:hover {
    color: var(--accent-color);
}

.footer-brand p {
    color: #CBD5E0;
    margin-top: var(--spacing-sm);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #CBD5E0;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: var(--spacing-sm);
    text-align: center;
}

.footer-bottom p {
    color: #CBD5E0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .approach-grid,
    .values-content {
        grid-template-columns: 1fr;
    }

    .mission-content,
    .founders-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-img,
    .founders-img {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: var(--spacing-md) 0;
    }

    .content-section {
        padding: var(--spacing-md) 0;
    }

    .approach-item,
    .value {
        padding: var(--spacing-sm);
    }
    
    .mission-img,
    .founders-img {
        height: 200px;
    }
}