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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #F8F6F0;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

p {
    margin-bottom: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B8941F;
    text-decoration: underline;
}

/* Header */
.header {
    background-color: #F8F6F0;
    padding: 2rem 0;
    border-bottom: 1px solid #E8E6E0;
    flex-shrink: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.brand-info {
    text-align: left;
}

.brand-name {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    color: #2C2C2C;
}

.brand-name a {
    color: #2C2C2C;
    text-decoration: none;
}

.brand-name a:hover {
    color: #D4AF37;
    text-decoration: none;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 0;
}

.page-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E8E6E0;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.content-section h3 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #D4AF37;
    display: inline-block;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4A4A4A;
}

.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-with-image.reverse .content-text {
    order: 2;
}

.content-with-image.reverse .content-image {
    order: 1;
}

.content-image .image-placeholder {
    background-color: #F0EEE8;
    border: 2px dashed #D4AF37;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    color: #8A8A8A;
    font-size: 0.9rem;
    text-align: center;
}

.philosophy-illustration {
    text-align: center;
    margin: 2rem 0;
}

.philosophy-svg {
    margin-bottom: 1rem;
}

.empty-content {
    background-color: #F0EEE8;
    border: 2px dashed #D4AF37;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.empty-content p {
    color: #8A8A8A;
    font-style: italic;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: #F8F6F0;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #B8B8B8;
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #F8F6F0;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B8B8B8;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .brand-info {
        text-align: center;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 1.5rem 0;
    }
    
    .page-hero {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .content-section {
        margin: 0 auto 2rem;
        padding: 0 15px;
    }
    
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-with-image.reverse .content-text,
    .content-with-image.reverse .content-image {
        order: unset;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .empty-content {
        padding: 2rem 1rem;
    }
}