/* Pages-specific styles */

.page-main {
    min-height: 70vh;
    padding: 4rem 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: #1a1b3a;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.page-section {
    margin-bottom: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-section h2 {
    font-size: 1.8rem;
    color: #1a1b3a;
    margin-bottom: 1.5rem;
    text-align: left;
    font-family: 'Noto Serif JP', serif;
}

.page-section p {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.content-placeholder {
    min-height: 300px;
    background-color: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

/* About page specific styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

.about-svg {
    max-width: 100%;
    height: auto;
}

/* Logo links */
.brand-name a {
    text-decoration: none;
    color: inherit;
}

.brand-name a:hover {
    color: #ff6b6b;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .page-section {
        padding: 1.5rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .page-main {
        padding: 2rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}