/* greeting-style.css - Elegant & Architectural Style for Chairman's Greeting */

:root {
    --main-blue: #1256a9;
    --accent-yellow: #f5b82e;
    --text-dark: #333;
    --text-light: #757575;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --serif-font: 'Noto Serif JP', serif;
}

.greeting-page {
    background-color: var(--light-bg);
    margin-top: 70px; /* Header offset */
}

/* --- Greeting Content Layout --- */
.greeting-content-section {
    padding: 100px 0;
    background-image: url("../images/workshop-group-photo-posing.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.greeting-content-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.85); /* 半透明の白オーバーレイ */
    z-index: 1;
}

.greeting-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Chairman Profile (Left Column) --- */
.chairman-profile {
    position: sticky;
    top: 120px; /* Adjust based on header height */
    text-align: center;
}

.chairman-portrait {
    position: relative;
    margin-bottom: 24px;
}

.chairman-portrait img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chairman-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.chairman-title {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* --- Greeting Text (Right Column) --- */
.greeting-text-wrapper {
    background-color: var(--white);
    padding: 60px 70px;
    border-left: 5px solid var(--main-blue);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.greeting-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.3;
}

.greeting-body {
    font-family: var(--serif-font);
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--text-dark);
}

.greeting-body p {
    margin-bottom: 2em;
}

.greeting-signature {
    margin-top: 40px;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 700;
    padding-bottom: 15px;;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .greeting-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .chairman-profile {
        position: static;
        margin-bottom: 40px;
    }
    .greeting-text-wrapper {
        padding: 40px 30px;
    }
}
