/* CV/About Page Specific Styles */

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Profile Section */
.profile-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-image {
    flex-shrink: 0;
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.profile-text h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.profile-text p {
    margin-bottom: 1rem;
    color: #555;
}

/* CV Download Section */
.cv-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cv-card {
    text-align: center;
}

.cv-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cv-icon {
    font-size: 2.5rem;
}

.cv-card h3 {
    color: #2c3e50;
    margin: 0;
}

.cv-card p {
    color: #666;
    margin: 1rem 0;
}

.cv-download {
    margin-top: 1.5rem;
}

.cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #f7ae6b, #61c4db);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.download-icon {
    font-size: 1.3rem;
}

.cv-info {
    margin-top: 1rem;
    color: #888;
}

/* Research Interests */
.interests-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.interests-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.interest-item {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f7ae6b;
}

.interest-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.interest-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .interests-grid {
        grid-template-columns: 1fr;
    }
}

/* Night Mode Styles */
body.night-mode .about-content {
    background-color: #0a0a0a;
}

body.night-mode .profile-section,
body.night-mode .cv-section,
body.night-mode .interests-section,
body.night-mode .facts-section,
body.night-mode .contact-cta {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.night-mode .profile-text h2,
body.night-mode .cv-card h3,
body.night-mode .interests-section h2,
body.night-mode .contact-cta h2 {
    color: #f0f0f0;
}

body.night-mode .profile-text p,
body.night-mode .cv-card p,
body.night-mode .interest-item p,
body.night-mode .contact-cta p {
    color: #d0d0d0;
}

body.night-mode .interest-item {
    background-color: #2a2a2a;
    border-left-color: #8B4513;
}

body.night-mode .interest-item h4 {
    color: #f0f0f0;
}

body.night-mode .cv-btn,
body.night-mode .cta-btn {
    background: linear-gradient(to right, #8B4513, #0C1445);
}

body.night-mode .cv-info,
body.night-mode .fact-label {
    color: #888;
}
