/* ==========================================================================
   Chairman's Message Page Styles
   ========================================================================== */

/* Hero Section */
.chairman-hero {
    background: linear-gradient(135deg, #003366 0%, #001A33 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chairman-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(227, 30, 36, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.chairman-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Content Section */
.chairman-content {
    padding: 100px 0 80px;
}

.chairman-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.chairman-photo {
    position: relative;
}

.chairman-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chairman-message {
    padding-top: 20px;
}

.message-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #E31E24;
    margin-bottom: 30px;
    line-height: 1.2;
}

.message-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.message-text p {
    margin-bottom: 20px;
}

/* Chairman Signature */
.chairman-signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.chairman-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.chairman-position {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .chairman-content-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .chairman-hero-title {
        font-size: 3rem;
    }

    .message-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .chairman-hero {
        padding: 80px 0 60px;
    }

    .chairman-hero-title {
        font-size: 2.2rem;
    }

    .chairman-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chairman-photo {
        max-width: 350px;
        margin: 0 auto;
    }

    .message-heading {
        font-size: 1.6rem;
        text-align: center;
    }

    .chairman-signature {
        text-align: center;
    }

    .chairman-breadcrumb {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .chairman-hero-title {
        font-size: 1.8rem;
    }

    .message-heading {
        font-size: 1.4rem;
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
    }

    .breadcrumb-nav .separator {
        margin: 0 5px;
    }

    .message-text {
        text-align: justify;
        font-size: 0.95rem;
    }
}

@media (max-width: 380px) {
    .chairman-hero-title {
        font-size: 1.5rem;
    }
}