/* Profile Photo Section */
.profile-section {
    margin-bottom: 2rem;
}

.profile-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.photo-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.photo-placeholder p {
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-secondary);
    margin: 0;
}
