/* Leadership Pages (Executive, VC, Dean) Styles */
.executive-page, .vc-page, .dean-page {
    background: linear-gradient(135deg, #f0fff0 0%, #e6f3ff 100%);
    min-height: 100vh;
}

.executive-hero, .vc-hero, .dean-hero {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
}

.executive-intro, .vc-intro, .dean-intro {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
    color: #2d5016;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.executive-portrait, .vc-portrait, .dean-portrait {
    position: relative;
    text-align: center;
}

.executive-portrait img, .vc-portrait img, .dean-portrait img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 0;
    border: 8px solid #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.executive-details h1, .vc-details h1, .dean-details h1 {
    font-size: 3.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4a7c59;
}

.executive-details .title, .vc-details .title, .dean-details .title {
    font-size: 1.6rem;
    color: #ff6b9d;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.executive-details .institution, .vc-details .institution, .dean-details .institution {
    font-size: 1.2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    font-weight: 400;
}

.leadership-badge {
    display: inline-block;
    background: linear-gradient(45deg, #87ceeb, #98fb98);
    color: #2d5016;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(135,206,235,0.2);
}

.message-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.message-header {
    text-align: center;
    margin-bottom: 4rem;
}

.message-header h2 {
    font-size: 3.5rem;
    color: #4a7c59;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #87ceeb, #98fb98);
    margin: 0 auto;
    border-radius: 0;
}

.greeting {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.4rem;
    color: #4a5568;
    font-style: italic;
}

.message-content {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.message-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
    text-indent: 2rem;
    font-family: 'Inter', sans-serif;
}

.message-content p:first-child::first-letter {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #4a7c59;
    float: left;
    line-height: 3rem;
    margin: 0.5rem 0.5rem 0 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.vision-highlight {
    background: linear-gradient(135deg, rgba(135,206,235,0.1), rgba(152,251,152,0.1)) !important;
    padding: 2rem !important;
    border-left: 6px solid #87ceeb !important;
    font-style: italic !important;
    color: #2d3748 !important;
    text-indent: 0 !important;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(135,206,235,0.1);
}

.welcome-message {
    background: linear-gradient(135deg, #87ceeb, #98fb98) !important;
    color: #2d5016 !important;
    padding: 2rem !important;
    text-align: center !important;
    font-size: 1.3rem !important;
    text-indent: 0 !important;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(135,206,235,0.2);
    margin-top: 1rem !important;
}

.closing {
    text-align: left;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
}

.closing p {
    margin-bottom: 0.3rem !important;
    text-indent: 0 !important;
    font-size: 1rem !important;
    color: #4a5568 !important;
    font-weight: normal !important;
}

@media (max-width: 768px) {
    .executive-intro, .vc-intro, .dean-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .executive-portrait img, .vc-portrait img, .dean-portrait img {
        width: 250px;
        height: 300px;
    }
    
    .executive-details h1, .vc-details h1, .dean-details h1 {
        font-size: 2.5rem;
    }
    
    .message-header h2 {
        font-size: 2.5rem;
    }
    
    .message-content {
        padding: 2rem;
    }
}