/* Auxiliary Pages Styles - Kiln Trace Japan */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F5F3F0 0%, #E8E5E0 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #E8E5E0;
}

.page-header h1 {
    color: #2C1810;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.page-subtitle {
    color: #8B4513;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    background-color: #FFF;
    min-height: 60vh;
}

.content-block {
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    color: #2C1810;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #E8E5E0;
    padding-bottom: 0.5rem;
}

.content-block h3 {
    color: #2C1810;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-block p {
    color: #5A4A3A;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* About Page Specific Styles */
.mission-image-placeholder {
    height: 300px;
    background: linear-gradient(45deg, #8B4513, #CD853F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0;
    font-style: italic;
    opacity: 0.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background-color: #F5F3F0;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E8E5E0;
}

.value-item h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #5A4A3A;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

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

.story-text p {
    margin-bottom: 1.5rem;
}

.story-image-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #CD853F, #8B4513);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    font-style: italic;
    opacity: 0.9;
}

/* Empty Content Styles for Legal Pages */
.about-image-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.12);
}

.about-image-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.about-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(139, 69, 19, 0.1));
}

/* Header Link Styles for Auxiliary Pages */
.brand-name a {
    color: inherit;
    text-decoration: none;
    border: none;
}

.brand-name a:hover {
    border: none;
    opacity: 0.8;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 3rem 0;
    }
    
    .content-block {
        margin-bottom: 2.5rem;
    }
    
    .content-block h2 {
        font-size: 1.7rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image-placeholder,
    .mission-image-placeholder {
        height: 250px;
        font-size: 0.95rem;
    }
    
    .empty-content {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .empty-content {
        padding: 2.5rem 1rem;
    }
    
    .story-image-placeholder,
    .mission-image-placeholder {
        height: 200px;
        font-size: 0.9rem;
    }
}