/* Auxiliary Pages Styles */

/* Header for auxiliary pages */
.aux-header {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E0E0E0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-link .brand-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E7D32;
}

.aux-nav a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.aux-nav a:hover {
    background: #F7F7F7;
    color: #2E7D32;
}

/* Main content for auxiliary pages */
.aux-main {
    min-height: 70vh;
    padding: 3rem 0;
}

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

.page-header h1 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 0;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    font-weight: 400;
}

.content-block {
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #E0E0E0;
    text-align: left;
}

.content-block h2 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-block h3 {
    color: #222;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-block p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.policy-list {
    margin: 1rem 0 1rem 2rem;
    color: #333;
}

.policy-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background: #F7F7F7;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2E7D32;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

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

.empty-content {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.empty-content p {
    font-size: 1.1rem;
    margin: 0;
}

/* About page image containers */
.hero-image-container,
.team-image-container {
    margin: 2rem 0;
    text-align: center;
}

.hero-image-placeholder,
.team-image-placeholder {
    max-width: 800px;
    height: 300px;
    margin: 0 auto;
    background: #DDD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Value and commitment grids */
.value-grid,
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item,
.commitment-item {
    text-align: center;
    padding: 2rem;
    background: #F7F7F7;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

.value-icon {
    margin-bottom: 1rem;
}

.value-item h3,
.commitment-item h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p,
.commitment-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About page specific styles */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.business-item {
    padding: 1.5rem;
    background: #F7F7F7;
    border-radius: 8px;
    border-left: 4px solid #2E7D32;
}

.business-item h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.business-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.company-info {
    margin-top: 2rem;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #F7F7F7;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
}

.info-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E0E0E0;
    vertical-align: top;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    background: #2E7D32;
    color: white;
    font-weight: 500;
    width: 150px;
}

.info-table td:last-child {
    background: white;
}

/* Responsive design for auxiliary pages */
@media (max-width: 768px) {
    .aux-header {
        padding: 1rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-image-placeholder,
    .team-image-placeholder {
        height: 200px;
        font-size: 1rem;
    }
    
    .info-table td {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .info-table td:first-child {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .info-table {
        font-size: 0.85rem;
    }
    
    .info-table td {
        padding: 0.6rem 0.8rem;
    }
    
    .info-table td:first-child {
        width: 100px;
    }
}