﻿/* ============================================
   Chairman's Message Section Styles
   Card Design | Image Right | Content Left
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Body Context (optional, not interfering with other sections) */
body {
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1e293b;
}

/* Chairman Section Background */
.chairman-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef9e6 0%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
}

    /* Decorative Background Pattern */
    .chairman-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.03'%3E%3Cpath fill='%239b6b3e' d='M10,50 L40,30 L70,40 L90,60 L70,80 L40,85 L15,70 Z'/%3E%3Ccircle cx='80' cy='25' r='6'/%3E%3Ccircle cx='25' cy='80' r='8'/%3E%3C/svg%3E");
        background-repeat: repeat;
        pointer-events: none;
    }

.container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card-like Wrapper */
.chairman-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 48px 24px 48px 24px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

    .chairman-wrapper:hover {
        box-shadow: 0 35px 55px -15px rgba(0, 0, 0, 0.3);
    }

/* ========= LEFT SIDE: MESSAGE CONTENT ========= */
.chairman-message {
    flex: 1.2;
    padding: 48px 40px;
    background: #ffffff;
    order: 1; /* content appears left on desktop */
}

/* Section Tag (Chairman's Desk) */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffedd5;
    color: #b45309;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

    .section-tag i {
        font-size: 0.8rem;
    }

/* Section Title */
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #2c3e2f;
    margin-bottom: 28px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 70px;
        height: 3px;
        background: #e6b17e;
        border-radius: 4px;
    }

/* Message Text Styling */
.message-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3e2b;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

    .message-content p:first-of-type {
        font-weight: 600;
        color: #9b4b1a;
        font-size: 1.05rem;
    }

.message-content strong {
    color: #b45309;
    font-weight: 600;
}

/* Signature Block */
.chairman-signature {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 2px dashed #e6c9a8;
}

    .chairman-signature h4 {
        font-size: 1.35rem;
        font-weight: 700;
        color: #2c5e2d;
        font-family: 'Playfair Display', serif;
        margin-bottom: 5px;
    }

    .chairman-signature p {
        font-size: 0.9rem;
        color: #7a5a3a;
        margin-bottom: 8px;
        font-weight: 500;
    }

.signature-line {
    width: 120px;
    height: 2px;
    background: #c29a6b;
    margin-top: 10px;
}

/* ========= RIGHT SIDE: IMAGE + QUOTE CARD ========= */
.chairman-image-card {
    flex: 0.9;
    background: linear-gradient(145deg, #fef3e2 0%, #faeedb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 30px;
    position: relative;
    order: 2;
    border-left: 1px solid rgba(218, 165, 92, 0.25);
}

/* Image Wrapper & Photo */
.image-wrapper {
    margin-bottom: 28px;
    text-align: center;
}

.chairman-photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 32px 16px 32px 16px;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s;
    background-color: #e9dacb;
}

    .chairman-photo:hover {
        transform: scale(1.02);
        box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.3);
    }

/* Quote Styling inside Right Card */
.chairman-quote {
    background: rgba(255, 248, 235, 0.9);
    padding: 22px 20px;
    border-radius: 28px 12px 28px 12px;
    text-align: center;
    max-width: 300px;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2px);
    transition: all 0.2s;
}

    .chairman-quote i {
        font-size: 2rem;
        color: #d49c6c;
        opacity: 0.7;
        margin-bottom: 10px;
        display: inline-block;
    }

    .chairman-quote p {
        font-size: 0.95rem;
        font-style: italic;
        line-height: 1.5;
        color: #4a3724;
        font-weight: 500;
        margin: 10px 0 8px;
    }

.quote-author {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b1622c;
    letter-spacing: 0.5px;
    margin-top: 6px;
    text-transform: uppercase;
}

/* ========= RESPONSIVE DESIGN ========= */
@media screen and (max-width: 992px) {
    .chairman-wrapper {
        border-radius: 36px 20px 36px 20px;
    }

    .chairman-message {
        padding: 40px 32px;
    }

    .section-title {
        font-size: 2rem;
    }

    .chairman-image-card {
        padding: 40px 25px;
    }

    .chairman-photo {
        max-width: 240px;
    }
}

@media screen and (max-width: 768px) {
    .chairman-section {
        padding: 60px 16px;
    }

    .chairman-wrapper {
        flex-direction: column;
        border-radius: 32px 24px 32px 24px;
    }

    /* On mobile, image appears above content (but maintains left/right? better flow) */
    .chairman-message {
        order: 2;
        padding: 36px 28px;
    }

    .chairman-image-card {
        order: 1;
        border-left: none;
        border-bottom: 1px solid rgba(218, 165, 92, 0.3);
        padding: 40px 20px 32px;
        border-radius: 32px 32px 0 0;
    }

    .section-title:after {
        width: 55px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .message-content p {
        font-size: 0.95rem;
    }

    .chairman-quote {
        max-width: 90%;
        margin-top: 15px;
    }

    .chairman-photo {
        max-width: 220px;
    }
}

@media screen and (max-width: 480px) {
    .chairman-message {
        padding: 28px 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .chairman-signature h4 {
        font-size: 1.2rem;
    }

    .chairman-image-card {
        padding: 30px 16px;
    }

    .chairman-quote p {
        font-size: 0.85rem;
    }
}

/* Optional animation on scroll */
.chairman-wrapper {
    animation: fadeSlideUp 0.6s ease-out;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
