/* President Page Styles */
.president-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(27, 79, 114, 0.05) 0%, rgba(46, 134, 193, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.president-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.president-info {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.president-title {
    margin-bottom: 2rem;
}

.president-title .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.president-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.president-quote {
    position: relative;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.president-quote i {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.president-quote p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.6;
}

.president-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.president-social .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.president-social .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.president-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.president-image img {
    max-height: 400px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Content Styles */
.president-content {
    padding: 80px 0;
}

.content-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.content-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--accent-color);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.timeline-item .year {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-item .info {
    font-size: 1rem;
    color: var(--dark-color);
}

/* Vision Mission Styles */
.vision, .mission {
    text-align: center;
    padding: 2rem;
}

.vision .icon, .mission .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.vision:hover .icon, .mission:hover .icon {
    transform: rotateY(180deg);
    background: var(--accent-color);
    color: white;
}

/* Contact Info Styles */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-list .info span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-list .info a, .contact-list .info p {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list .info a:hover {
    color: var(--accent-color);
}

/* Quick Actions Styles */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.action-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(10px);
}

.action-btn:hover i {
    color: white;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .president-hero::before {
        display: none;
    }

    .president-info {
        text-align: center;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .president-title h1 {
        font-size: 2.5rem;
    }

    .president-social {
        justify-content: center;
    }

    .president-image img {
        max-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .president-hero {
        padding: 100px 0 50px;
    }

    .president-title h1 {
        font-size: 2rem;
    }

    .president-quote {
        padding: 1.5rem;
    }

    .president-quote p {
        font-size: 1rem;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item::before {
        left: -30px;
    }
} 