/* css/president.css */

/* --- Added: Lighter Maroon Background --- */
body {
   background-color: #1A202C;
    margin: 0;
    padding: 0;
}

.president-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px 40px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    /* --- Increased Shadow: More blur and higher opacity --- */
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); /* Stronger shadow for dark mode */
    border-radius: 20px;


/* Profile Section - Centered */
.president-profile {
    text-align: center;
    margin-bottom: 50px;
}

.president-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%; 
    border: 5px solid #990000; /* Match lighter maroon */
    /* --- Increased Shadow for Photo --- */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.president-profile h2 {
    color: #990000; /* Match lighter maroon */
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.president-profile h3 {
    color: #d4af37; 
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

.president-bio {
    max-width: 850px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    font-size: 1.05rem;
}

/* Achievements Section - 3 Column Grid */
.achievements-section h3 {
    text-align: center;
    color: #990000;
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    list-style: none;
    padding: 0;
}

.achievement-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    /* --- Increased Shadow for Cards --- */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-top: 4px solid #d4af37;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
    /* Extra deep shadow on hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* Responsive adjustment for tablets/phones */
@media (max-width: 992px) {
    .achievements-grid { grid-template-columns: repeat(2, 1fr); }
    .president-container { margin: 20px; padding: 30px 20px; }
}

@media (max-width: 600px) {
    .achievements-grid { grid-template-columns: 1fr; }
}
}